/* Base Styles and CSS Reset */
:root {
    --primary-color: #007bff;
    --secondary-color: #6c757d;
    --success-color: #28a745;
    --danger-color: #dc3545;
    --warning-color: #ffc107;
    --info-color: #17a2b8;
    --light-color: #f8f9fa;
    --dark-color: #343a40;
    --white: #ffffff;
    --body-bg: #f8f9fa;
    --header-height: 70px;
    /* --footer-bg: #2c3e50; */
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 15px rgba(0,0,0,0.1);
    --border-radius: 8px;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--dark-color);
    background-color: var(--body-bg);
}


footer{
    text-align: center;
  }
  .small, small {
    font-size: 78%;
  }

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--dark-color);
}

/* Layout */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 2rem 0;
}

/* Header and Navigation */
header {
    background: var(--white);
    box-shadow: var(--shadow-sm);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.navbar {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 5%;
    height: var(--header-height);
    background: #414242D6;
}

.logo img {
    height: 45px;
}

.nav-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--dark-color);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.nav-links li {
    position: relative;
}

.nav-links a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.nav-links a i {
    font-size: 1.1rem;
}

.nav-links a:hover,
.nav-links a.active {
    color: #01933D;
    background: #fffff0;
    border-radius: var(--border-radius);
}

/* Dropdown Styles */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 200px;
    background: var(--dark-color);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 100;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    width: 100%;
}

.dropdown-menu a {
    padding: 0.8rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Search Overlay */
.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.search-overlay.active {
    display: flex;
}

.search-container {
    width: 90%;
    max-width: 600px;
    position: relative;
}

.search-container input {
    width: 100%;
    padding: 1rem 3rem 1rem 1rem;
    font-size: 1.2rem;
    border: none;
    border-radius: var(--border-radius);
    background: var(--white);
}

.search-container button {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--dark-color);
    cursor: pointer;
}

.close-search {
    position: absolute;
    right: -2rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
}

/* Breadcrumb */
.breadcrumb {
    background: var(--light-color);
    padding: 1rem 0;
   /* margin-top: var(--header-height);*/
}

.breadcrumb a {
    color: #01933D;
    text-decoration: none;
}

.breadcrumb i {
    margin: 0 0.5rem;
    color: var(--secondary-color);
}

/* Hero Section */
.hero {
    /*height: 85vh;*/
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
                url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    margin-top: 150px;
    /* margin-top: var(--header-height); */
}

.hero-content {
    max-width: 1200px;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease;
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease 0.2s;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    text-align: center;
}

.btn-primary {
    background: #01933D;
    color: var(--white);
}

.btn-primary:hover {
    background: #075728;
    transform: translateY(-2px);
}

.btn-secondary {
    background: var(--secondary-color);
    color: var(--white);
}

.btn-secondary:hover {
    background: #5a6268;
    transform: translateY(-2px);
}

/* Statistics Section */
.statistics {
    background: var(--white);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.stat-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-5px);
}

.stat-card i {
    font-size: 2.5rem;
    color: #01933D;
    margin-bottom: 1rem;
}

.stat-number {
    font-size: 2rem;
    font-weight: 600;
    color: var(--dark-color);
}

/* Data Categories Section */
.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.category-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    text-decoration: none;
    color: var(--dark-color);
    transition: var(--transition);
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.category-card i {
    font-size: 2.5rem;
    color: #01933D;
    margin-bottom: 1rem;
}

.portal-thumbnails {
    padding: 40px 0;
    background-color: #f9f9f9;
    text-align: center;
}

.thumbnail-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 20px;
}

.thumbnail-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #fff;
    border: 1px solid #ddd;
    padding: 20px;
    border-radius: 12px;
    width: 160px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    color: #333;
}

.thumbnail-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.thumbnail-card i {
    font-size: 2.5rem;
    color: #01933D;
    margin-bottom: 10px;
}

.thumbnail-group {
    margin-bottom: 20px;
}

@media (max-width: 600px) {
    .thumbnail-card {
        width: 100%;
    }
}

/* Latest Updates Section */
.updates-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.update-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
}

.update-date {
    color: var(--secondary-color);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.read-more {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    display: inline-block;
    margin-top: 1rem;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)),
                url('../images/cta-bg.jpg');
    background-size: cover;
    background-position: center;
    color: var(--white);
    text-align: center;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary-color);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
/*@media (max-width: 320px) {*/
/*    .hero {*/
/*        height: 150vh;*/
/*    }*/
/*}*/
@media (max-width: 768px) {
    .nav-toggle {
        display: block;
    }
    
    .hero {
        height: 95vh;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        flex-direction: column;
        background: var(--white);
        padding: 1rem 0;
        box-shadow: var(--shadow-md);
        display: none;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        width: 100%;
    }

    .nav-links a {
        padding: 1rem 2rem;
        background-color: #28a745;
    }
    
    /*.nav-links a {*/
    /*    display: flex;*/
    /*    align-items: center;*/
    /*    gap: 0.5rem;*/
    /*    padding: 0.5rem 1rem;*/
    /*    background-color: #28a745;*/
    /*    color: #ffffff;*/
    /*    text-decoration: none;*/
    /*    font-weight: 500;*/
    /*    transition: var(--transition);*/
    /*}*/
    
    /*.nav-links a i {*/
    /*    font-size: 1.1rem;*/
    /*}*/
    
    .nav-links a:hover,
    .nav-links a.active {
        color: #01933D;
        background: #fffff0;
    }

    .dropdown-menu {
        position: static;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: var(--light-color);
        padding-left: 2rem;
    }

    .dropdown-toggle .fa-chevron-down {
        transform: rotate(0);
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1.2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .stat-card,
    .category-card,
    .update-card {
        margin: 0 1rem;
    }
}

/* Utility Classes */
.text-center { text-align: center; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }
.p-1 { padding: 1rem; }
.p-2 { padding: 2rem; }
.p-3 { padding: 3rem; }

/* Form Styles */
.form-group {
    margin-bottom: 1.5rem;
}

.form-control {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: var(--border-radius);
    font-size: 1rem;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(0,123,255,0.25);
}

/* Alert Messages */
.alert {
    padding: 1rem;
    border-radius: var(--border-radius);
    margin-bottom: 1rem;
}

.alert-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-danger {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Loading States */
.loading {
    position: relative;
    opacity: 0.7;
    pointer-events: none;
}

.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 2rem;
    height: 2rem;
    border: 3px solid #f3f3f3;
    border-top: 3px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Schools Page Specific Styles */
.schools-page {
    padding-top: var(--header-height);
}

.page-hero {
    /* background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), 
                url('../images/schools-hero.jpg'); */
    background-size: cover;
    background-position: center;
    color: black;
    padding: 4rem 0;
    text-align: center;
    /* margin-top: 4rem; */
}

.page-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.search-filters {
    background: #343a408a;
    padding: 2rem;
    border-radius: var(--border-radius);
    margin-top: -4rem;
    box-shadow: var(--shadow-md);
}

.search-box {
    margin-bottom: 1.5rem;
}

.search-box input {
    width: 100%;
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: var(--border-radius);
    font-size: 1rem;
}

.filters-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    align-items: end;
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.filter-group label {
    font-weight: 500;
    color: white;
}

.filter-group select {
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: var(--border-radius);
    font-size: 1rem;
}

.results-summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 2rem 0;
}

.schools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.school-card {
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.school-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.school-card-header {
    padding: 1.5rem;
    border-bottom: 1px solid #eee;
}

.school-card-header h3 {
    margin: 0;
    font-size: 1.2rem;
}

.emis-number {
    display: inline-block;
    margin-top: 0.5rem;
    font-size: 0.9rem;
    color: var(--secondary-color);
}

.school-card-body {
    padding: 1.5rem;
}

.info-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.8rem;
}

.info-row .label {
    color: var(--secondary-color);
}

.no-results {
    text-align: center;
    padding: 3rem;
    background: white;
    border-radius: var(--border-radius);
    grid-column: 1 / -1;
}

.no-results i {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin: 2rem 0;
}

.page-numbers {
    display: flex;
    gap: 0.5rem;
}

.page-numbers a,
.page-numbers .current {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: var(--border-radius);
    border: 1px solid #ddd;
    text-decoration: none;
    color: var(--dark-color);
}

.page-numbers .current {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

/* Schools Table Styles */
.schools-table {
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    margin: 2rem 0;
    overflow-x: auto;
}

.schools-list {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
}

.schools-list th {
    background: #f8f9fa;
    padding: 1rem;
    text-align: left;
    font-weight: 600;
    color: #495057;
    border-bottom: 2px solid #dee2e6;
    white-space: nowrap;
}

.schools-list td {
    padding: 1rem;
    border-bottom: 1px solid #dee2e6;
    vertical-align: middle;
}

.schools-list tr:hover {
    background-color: #f8f9fa;
}

.school-name {
    font-weight: 500;
    color: #01933D;
}

.approval-status .status-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
}

.status-badge.approved {
    background-color: #e3fcef;
    color: #0c6b58;
}

.status-badge.pending {
    background-color: #fff3dc;
    color: #93370d;
}

.status-badge.rejected {
    background-color: #fee2e2;
    color: #991b1b;
}

.btn-details {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #01933D;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
}

.btn-details:hover {
    text-decoration: underline;
}

.btn-details i {
    font-size: 0.8rem;
    transition: transform 0.2s;
}

.btn-details:hover i {
    transform: translateX(3px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .schools-table {
        margin: 1rem -1rem;
        border-radius: 0;
    }

    .schools-list th,
    .schools-list td {
        padding: 0.75rem;
    }

    .btn-details span {
        display: none;
    }
}

/* School Details Page Styles */
.school-details-page {
    padding-top: 30px;
    background-color: #ECF2F2;
}

.school-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-top: 3rem;
}

.school-header h1 {
    font-size: 2rem;
    color: #333;
    margin: 0;
}

.download-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background-color: #01933D;
    color: white;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s;
}

.download-btn:hover {
    background-color: #075728;
}

.content-grid {
    display: grid;
    /* grid-template-columns: 1fr 1fr; */
    gap: 2rem;
    margin-top: 2rem;
}

.info-card {
    background: white;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.info-card h2 {
    font-size: 1.25rem;
    color: #333;
    margin: 0 0 1.5rem 0;
}

.info-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.info-item {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid #e9ecef;
}

.info-item:last-child {
    border-bottom: none;
}

.info-label {
    color: #495057;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.info-tooltip {
    color: #868e96;
    cursor: help;
}

.info-value {
    color: #212529;
    font-weight: bold;
}

.school-images {
    position: relative;
}

.image-slider {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
}

.image-slider img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #4263eb;
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s;
}

.slider-btn:hover {
    background-color: #364fc7;
}

.slider-btn.prev {
    left: 1rem;
}

.slider-btn.next {
    right: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .content-grid {
        grid-template-columns: 1fr;
    }

    .school-header {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .image-slider img {
        height: 300px;
    }
}

/* Additional Information Sections */
.additional-info {
    margin-top: 2rem;
}

.status-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.status-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-weight: 500;
}

.status-badge.approved {
    background-color: #e3fcef;
    color: #0c6b58;
}

.status-badge i {
    color: #0c6b58;
}

.performance-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.pass-rate {
    color: #495057;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.no-data {
    color: #868e96;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.no-data-message {
    padding: 1rem 0;
    color: #868e96;
}

/* Factsheet Styles */
.factsheet-content {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 2rem;
    margin-top: 1rem;
}

.factsheet-nav {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.nav-item {
    padding: 0.75rem 1rem;
    border-radius: 4px;
    cursor: pointer;
    color: #495057;
    transition: all 0.3s;
}

.nav-item.active {
    background-color: #01933D;
    color: white;
}

.nav-item:hover:not(.active) {
    background-color: #f1f3f5;
}

.factsheet-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.factsheet-details h3 {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 1rem;
}

.info-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.info-row {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid #e9ecef;
}

.info-row .label {
    color: #495057;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex: 1;
}

.info-row .value {
    color: #212529;
    font-weight: bold;
    min-width: 100px;
    text-align: right;
}

/* Responsive Design */
@media (max-width: 768px) {
    .factsheet-content {
        grid-template-columns: 1fr;
    }

    .factsheet-nav {
        flex-direction: row;
        overflow-x: auto;
        padding-bottom: 0.5rem;
    }

    .info-row {
        flex-direction: column;
        gap: 0.5rem;
    }

    .info-row .value {
        text-align: left;
    }
}

/* Card Spacing */
.info-card {
    background: white;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    padding: 1.5rem;
    margin-bottom: 2rem;
}

/* Additional spacing for specific sections */
.additional-info .info-card {
    margin-top: 2rem;
}

/* Key Info card specific spacing */
.content-grid .info-card {
    margin-bottom: 2rem;
}

/* School Factsheet specific spacing */
.factsheet.info-card {
    margin-top: 2rem;
}

/* Approval Status card specific spacing */
.status-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

/* Exam Performance card specific spacing */
.performance-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

/* Factsheet content spacing */
.factsheet-content {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 2rem;
    margin-top: 1rem;
}

/* Section spacing within factsheet */
.factsheet-details section {
    margin-bottom: 2rem;
}

.factsheet-details section:last-child {
    margin-bottom: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .info-card {
        margin-bottom: 1rem;
    }
    
    .additional-info .info-card {
        margin-top: 1rem;
    }
}

/* Breadcrumbs styling */
.breadcrumbs {
    background: white;
    padding: 0 0;
    margin-bottom: 2rem;
    border-bottom: 1px solid #e9ecef;
}

.breadcrumbs a {
    color: #01933D;
    text-decoration: none;
}

.breadcrumbs a:hover {
    text-decoration: underline;
}

.breadcrumbs span {
    color: #495057;
}

.breadcrumbs a:not(:last-child):after,
.breadcrumbs span:not(:last-child):after {
    content: '/';
    margin: 0 0.5rem;
    color: #868e96;
}