
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary-green: #26611B;
            --secondary-green: #418D25;
            --dark-green: #1a4512;
            --light-green: #f0f7ee;
            --bg-white: #FFFFFF;
            --bg-gray: #F7F9FC;
            --text-dark: #1F2937;
            --text-secondary: #6B7280;
            --border-light: #E5E7EB;
            --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
            --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
            --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Inter', 'Segoe UI', sans-serif;
            line-height: 1.6;
            color: var(--text-dark);
            background-color: var(--bg-gray);
        }

        
        /* Header */
        .header {
            background: white;
            box-shadow: var(--shadow-sm);
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        .header-content {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0.5rem 0.5rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo-section {
            display: flex;
            align-items: center;
            gap: 1.5rem;
        }
        .logo {
            width: 60px;
        }

        .logo-icon {
            background:transparent;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .logo-text h1 {
            font-size: 1.75rem;
            color: var(--primary-green);
            font-weight: 700;
            margin-bottom: 0.25rem;
        }

        .logo-text p {
            font-size: 0.875rem;
            color: var(--text-secondary);
        }

        .main-nav {
            display: flex;
            gap: 2.5rem;
            list-style: none;
        }

        .main-nav a {
            color: var(--text-dark);
            text-decoration: none;
            font-weight: 500;
            font-size: 0.95rem;
            padding: 0.5rem 0;
            border-bottom: 3px solid transparent;
            transition: all 0.3s;
        }

        .main-nav a:hover,
        .main-nav a.active {
            color: var(--primary-green);
            border-bottom-color: var(--secondary-green);
        }

        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: var(--text-dark);
        }

        /* Hero Section */
        .hero {
            position: relative;
            overflow: hidden;
            width: 100%;
            min-height: 650px; /* kerak bo‘lsa 80vh ham qilamiz */
            background-image: url("/static/img/background.28ca55b234ea.png");
            background-size: cover;
            background-position: center center;
            background-repeat: no-repeat;
        }
        .hero::after {
                content: "";
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                background: rgba(0, 0, 0, 0.15); /* 15% qora shaffof overlay */
                z-index: 1;
                
            }




        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><circle cx="100" cy="100" r="150" fill="rgba(255,255,255,0.03)"/><circle cx="1000" cy="400" r="200" fill="rgba(255,255,255,0.03)"/><circle cx="600" cy="500" r="180" fill="rgba(255,255,255,0.03)"/></svg>');
            background-size: cover;
            opacity: 0.5;
        }



        .hero-content {
            max-width: 1400px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }

        .hero-grid {
            margin-top: 150px;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .hero-text h1 {
            color: rgb(1, 150, 65);
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
            font-weight: 800;
            line-height: 1.2;
        }
        .hero-image {
            height: 700px;
        }

        .hero-text p {

            font-weight: bold;
            font-size: 1.25rem;
            margin-bottom: 2.5rem;
            opacity: 0.80;
            line-height: 1.7;
        }

        .hero-actions {
            display: flex;
            margin-top: 50px;
            gap: 1rem;
            flex-wrap: wrap;
            justify-items: center; /* <-- Markazga keltiradi */
        }

        .btn {
            padding: 1rem 2rem;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1rem;
            transition: all 0.3s;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            cursor: pointer;
            border: none;
        }

        .btn-primary {
            background: white;
            color: var(--primary-green);
            box-shadow: var(--shadow-md);
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow-lg);
        }

        .btn-outline {
            background: transparent;
            color: white;
            border: 2px solid white;
        }

        .btn-outline:hover {
            background: white;
            color: var(--primary-green);
        }

        .hero-visual {
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 18rem;
            
        }

        /* Container */
        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        /* Section */
        .section {
            padding: 3rem 0;
        }

        .section-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .section-label {
            display: inline-block;
            background: var(--light-green);
            color: var(--primary-green);
            padding: 0.5rem 1.5rem;
            border-radius: 50px;
            font-size: 0.875rem;
            font-weight: 600;
            margin-bottom: 1rem;
        }

        .section-title {
            font-size: 3rem;
            margin-bottom: 1rem;
            color: var(--text-dark);
            font-weight: 700;
        }

        .section-subtitle {
            color: var(--text-secondary);
            font-size: 1.25rem;
            max-width: 700px;
            margin: 0 auto;
        }

        /* Statistics Section */
        .stats-section {
            background: white;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
        }

        .stat-card {
            background: var(--bg-gray);
            padding: 2.5rem;
            border-radius: 12px;
            text-align: center;
            transition: all 0.3s;
            border: 2px solid transparent;
        }

        .stat-card:hover {
            border-color: var(--secondary-green);
            transform: translateY(-5px);
            box-shadow: var(--shadow-md);
        }

        .stat-icon {
            font-size: 4rem;
            margin-bottom: 1rem;
        }

        .stat-number {
            font-size: 3.5rem;
            font-weight: 800;
            background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 0.5rem;
        }

        .stat-label {
            color: var(--text-secondary);
            font-size: 1.1rem;
            font-weight: 500;
        }

        /* News Section */
        .news-section {
            background: var(--bg-gray);
        }

        .news-controls {
            background: white;
            padding: 2rem;
            border-radius: 12px;
            margin-bottom: 3rem;
            box-shadow: var(--shadow-sm);
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 1.5rem;
        }

        .search-wrapper {
            flex: 1;
            min-width: 300px;
            max-width: 500px;
            position: relative;
        }

        .search-icon {
            position: absolute;
            left: 1rem;
            top: 50%;
            transform: translateY(-50%);
            color: var(--text-secondary);
        }

        .search-input {
            width: 100%;
            padding: 1rem 1rem 1rem 3rem;
            border: 2px solid var(--border-light);
            border-radius: 10px;
            font-size: 1rem;
            transition: all 0.3s;
        }

        .search-input:focus {
            outline: none;
            border-color: var(--secondary-green);
            box-shadow: 0 0 0 3px rgba(65, 141, 37, 0.1);
        }

        .sort-controls {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .sort-label {
            color: var(--text-secondary);
            font-weight: 600;
            font-size: 0.95rem;
        }

        .sort-select {
            padding: 0.75rem 1.5rem;
            border: 2px solid var(--border-light);
            border-radius: 10px;
            font-size: 0.95rem;
            cursor: pointer;
            background: white;
            font-weight: 500;
            transition: all 0.3s;
        }

        .sort-select:focus {
            outline: none;
            border-color: var(--secondary-green);
        }

        .news-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
            gap: 2rem;
        }

        .news-card {
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: var(--shadow-sm);
            transition: all 0.3s;
            display: flex;
            flex-direction: column;
            border: 1px solid var(--border-light);
        }

        .news-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-lg);
        }

        .news-image-container {
            position: relative;
            overflow: hidden;
            height: 250px;
            background: linear-gradient(135deg, var(--light-green), #e8f5e6);
        }

        .news-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }

        .news-card:hover .news-image {
            transform: scale(1.1);
        }

        .news-category {
            position: absolute;
            top: 1rem;
            left: 1rem;
            background: var(--secondary-green);
            color: white;
            padding: 0.5rem 1rem;
            border-radius: 6px;
            font-size: 0.875rem;
            font-weight: 600;
        }

        .news-body {
            padding: 2rem;
            flex: 1;
            display: flex;
            flex-direction: column;
        }

        .news-meta {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1rem;
            color: var(--text-secondary);
            font-size: 0.875rem;
        }

        .news-date {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .news-title {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: var(--text-dark);
            font-weight: 700;
            line-height: 1.4;
        }

        .news-excerpt {
            color: var(--text-secondary);
            margin-bottom: 1.5rem;
            line-height: 1.8;
            flex: 1;
        }

        .news-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: 1.5rem;
            border-top: 1px solid var(--border-light);
        }

        .news-link {
            color: var(--primary-green);
            text-decoration: none;
            font-weight: 700;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            transition: all 0.3s;
        }

        .news-link:hover {
            gap: 1rem;
            color: var(--secondary-green);
        }

        /* Pagination */
        .pagination {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 0.75rem;
            margin-top: 4rem;
        }

        .page-btn {
            padding: 0.75rem 1.25rem;
            border: 2px solid var(--border-light);
            background: white;
            color: var(--text-dark);
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.3s;
            font-weight: 600;
        }

        .page-btn:hover:not(:disabled) {
            background: var(--secondary-green);
            color: white;
            border-color: var(--secondary-green);
        }

        .page-btn.active {
            background: var(--primary-green);
            color: white;
            border-color: var(--primary-green);
        }

        .page-btn:disabled {
            opacity: 0.4;
            cursor: not-allowed;
        }

        /* Loading State */
        .loading-state {
            text-align: center;
            padding: 4rem 2rem;
        }

        .loading-spinner {
            width: 60px;
            height: 60px;
            border: 4px solid var(--border-light);
            border-top-color: var(--secondary-green);
            border-radius: 50%;
            animation: spin 1s linear infinite;
            margin: 0 auto 1.5rem;
        }

        @keyframes spin {
            to { transform: rotate(360deg); }
        }

        .loading-text {
            color: var(--text-secondary);
            font-size: 1.1rem;
        }

        /* Empty State */
        .empty-state {
            text-align: center;
            padding: 5rem 2rem;
        }

        .empty-icon {
            font-size: 8rem;
            margin-bottom: 2rem;
            opacity: 0.3;
        }

        .empty-title {
            font-size: 2rem;
            color: var(--text-dark);
            margin-bottom: 1rem;
            font-weight: 700;
        }

        .empty-text {
            color: var(--text-secondary);
            font-size: 1.1rem;
        }

        /* Calculators Section */
        .calculators-section {
            background: white;
        }

        .calculators-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
            gap: 2rem;
        }

        .calculator-card {
            background: var(--bg-gray);
            padding: 3rem;
            border-radius: 12px;
            transition: all 0.3s;
            border: 2px solid transparent;
        }

        .calculator-card:hover {
            border-color: var(--secondary-green);
            transform: translateY(-5px);
            box-shadow: var(--shadow-md);
        }

        .calculator-icon {
            font-size: 5rem;
            margin-bottom: 1.5rem;
        }

        .calculator-title {
            font-size: 1.75rem;
            margin-bottom: 1rem;
            color: var(--primary-green);
            font-weight: 700;
        }

        .calculator-desc {
            color: var(--text-secondary);
            margin-bottom: 2rem;
            line-height: 1.8;
            font-size: 1.05rem;
        }

        /* Apps Section */
        .apps-section {
            background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
            color: white;
            position: relative;
            overflow: hidden;
        }

        .apps-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><circle cx="200" cy="100" r="180" fill="rgba(255,255,255,0.03)"/><circle cx="900" cy="450" r="220" fill="rgba(255,255,255,0.03)"/></svg>');
            opacity: 0.5;
        }

        .apps-content {
            position: relative;
            z-index: 1;
            display: grid;
            grid-template-columns: 1.2fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .apps-text h2 {
            font-size: 3rem;
            margin-bottom: 1.5rem;
            font-weight: 800;
        }

        .apps-text p {
            font-size: 1.25rem;
            margin-bottom: 2.5rem;
            opacity: 0.95;
            line-height: 1.8;
        }

        .app-downloads {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
        }

        .app-badge {
            display: inline-flex;
            align-items: center;
            gap: 1rem;
            background: white;
            color: var(--text-dark);
            padding: 1.25rem 2rem;
            border-radius: 12px;
            text-decoration: none;
            transition: all 0.3s;
            box-shadow: var(--shadow-md);
        }

        .app-badge:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-lg);
        }

   
        .app-badge-icon-img {
            height: 50px;
        }

        .app-badge-text small {
            display: block;
            font-size: 0.75rem;
            color: var(--text-secondary);
        }

        .app-badge-text strong {
            display: block;
            font-size: 1.25rem;
            font-weight: 700;
        }

        .app-mockup {
            text-align: center;
            font-size: 20rem;
            opacity: 0.3;
        }

        /* Footer */
        .footer {
            background: var(--text-dark);
            color: white;
            padding: 4rem 0 2rem;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 1.5fr 1fr 1fr 1fr;
            gap: 3rem;
            margin-bottom: 3rem;
        }

        .footer-section h3 {
            color: var(--secondary-green);
            margin-bottom: 1.5rem;
            font-size: 1.25rem;
            font-weight: 700;
        }

        .footer-section p {
            color: rgba(255, 255, 255, 0.7);
            line-height: 1.8;
            margin-bottom: 1rem;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 0.75rem;
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            transition: all 0.3s;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }

        .footer-links a:hover {
            color: white;
            padding-left: 0.5rem;
        }

        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: rgba(255, 255, 255, 0.6);
        }

        /* Hidden */
        .hidden {
            display: none !important;
        }

        /* Mobile Menu */
        .mobile-menu {
            display: none;
            position: fixed;
            top: 0;
            left: -100%;
            width: 280px;
            height: 100vh;
            background: white;
            box-shadow: var(--shadow-lg);
            transition: left 0.3s ease-in-out;
            z-index: 2000;
            overflow-y: auto;
        }

        .mobile-menu.active {
            left: 0;
        }

        .mobile-menu-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1.5rem;
            border-bottom: 1px solid var(--border-light);
        }

        .mobile-menu-close {
            background: none;
            border: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: var(--text-dark);
        }

        .mobile-menu-nav {
            list-style: none;
            padding: 1rem 0;
        }

        .mobile-menu-nav li {
            border-bottom: 1px solid var(--border-light);
        }

        .mobile-menu-nav a {
            display: block;
            padding: 1.25rem 1.5rem;
            color: var(--text-dark);
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s;
        }

        .mobile-menu-nav a:hover,
        .mobile-menu-nav a.active {
            background: var(--light-green);
            color: var(--primary-green);
            padding-left: 2rem;
        }

        .mobile-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            z-index: 1999;
            opacity: 0;
            transition: opacity 0.3s;
        }

        .mobile-overlay.active {
            opacity: 1;
        }

        /* Responsive */
        @media (max-width: 1200px) {
            .hero-text h1 {
                font-size: 3rem;
            }

            .section-title {
                font-size: 2.5rem;
            }
        }

        @media (max-width: 1024px) {
            .container {
                padding: 0 1.5rem;
            }

            .hero-grid,
            .apps-content {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .hero-visual,
            .app-mockup {
                display: none;
            }

            .footer-grid {
                grid-template-columns: 1fr 1fr;
            }

            .hero-actions {
                justify-content: center;
            }

            .apps-text {
                text-align: center;
            }

            .app-downloads {
                justify-content: center;
            }
        }

        @media (max-width: 768px) {
            /* Top Bar */
            .top-bar-content {
                flex-direction: column;
                gap: 1rem;
                text-align: center;
            }

            .gov-info {
                flex-direction: column;
            }

            /* Header */
            .header-content {
                padding: 1rem 1.5rem;
            }

            .main-nav {
                display: none;
            }

            .mobile-menu-btn {
                display: block;
            }

            .mobile-menu {
                display: block;
            }

            .mobile-overlay {
                display: block;
            }

            .logo-section {
                gap: 1rem;
            }

            .logo-icon {
                width: 50px;
                height: 50px;
                font-size: 1.5rem;
            }

            .logo-text h1 {
                font-size: 1.3rem;
            }

            .logo-text p {
                font-size: 0.75rem;
            }

            /* Hero */
            .hero {
                padding: 3rem 1.5rem;
            }

            .hero-text h1 {
                font-size: 2rem;
                margin-bottom: 1rem;
            }

            .hero-text p {
                font-size: 1rem;
                margin-bottom: 1.5rem;
            }

            .hero-actions {
                flex-direction: column;
                width: 100%;
            }

            .btn {
                width: 100%;
                justify-content: center;
            }

            /* Sections */
            .section {
                padding: 3rem 0;
            }

            .section-header {
                margin-bottom: 2.5rem;
            }

            .section-title {
                font-size: 1.75rem;
            }

            .section-subtitle {
                font-size: 1rem;
            }

            /* Stats */
            .stats-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .stat-card {
                padding: 2rem;
            }

            .stat-number {
                font-size: 2.5rem;
            }

            /* News */
            .news-controls {
                flex-direction: column;
                align-items: stretch;
                padding: 1.5rem;
            }

            .search-wrapper {
                max-width: 100%;
            }

            .sort-controls {
                justify-content: space-between;
            }

            .news-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .news-image-container {
                height: 200px;
            }

            .news-body {
                padding: 1.5rem;
            }

            .news-title {
                font-size: 1.25rem;
            }

            .pagination {
                flex-wrap: wrap;
                gap: 0.5rem;
            }

            .page-btn {
                padding: 0.6rem 1rem;
                font-size: 0.9rem;
            }

            /* Calculators */
            .calculators-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .calculator-card {
                padding: 2rem;
            }

            .calculator-title {
                font-size: 1.5rem;
            }

            /* Apps */
            .apps-section {
                text-align: center;
            }

            .apps-text h2 {
                font-size: 2rem;
            }

            .apps-text p {
                font-size: 1rem;
            }

            .app-downloads {
                flex-direction: column;
            }

            .app-badge {
                width: 100%;
                justify-content: center;
            }

            /* Footer */
            .footer {
                padding: 3rem 0 1.5rem;
            }

            .footer-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .footer-section {
                text-align: center;
            }

            .footer-links {
                display: flex;
                flex-direction: column;
                align-items: center;
            }
        }

        @media (max-width: 480px) {
            .hero-text h1 {
                font-size: 1.75rem;
            }

            .section-title {
                font-size: 1.5rem;
            }

            .stat-icon {
                font-size: 3rem;
            }

            .stat-number {
                font-size: 2rem;
            }

            .calculator-icon {
                font-size: 4rem;
            }

            .news-card {
                border-radius: 8px;
            }

            .news-body {
                padding: 1.25rem;
            }

            .btn {
                padding: 0.875rem 1.5rem;
                font-size: 0.95rem;
            }

            .pagination {
                margin-top: 2rem;
            }

            #pageNumbers {
                display: flex;
                flex-wrap: wrap;
                justify-content: center;
                gap: 0.5rem;
            }
        }

        @media (max-width: 360px) {
            .container {
                padding: 0 1rem;
            }

            .hero {
                padding: 2rem 1rem;
            }

            .logo-text h1 {
                font-size: 1.1rem;
            }

            .hero-text h1 {
                font-size: 1.5rem;
            }

            .section-title {
                font-size: 1.35rem;
            }

            .stat-card,
            .calculator-card {
                padding: 1.5rem;
            }
        }




.marquee {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: 20px;
    background-color: #26611BFF;
    color: #ffffff;
    font-size: 12px;
    font-weight: bold;
    text-align: center;
    padding: 0px 0;
    overflow: hidden;
    z-index: 9999;
}

.marquee p {
    display: inline-block;
    white-space: nowrap;
    animation: scroll-left 20s linear infinite; /* Animatsiyani 20s qilib o'zgartirdik */
}

@keyframes scroll-left {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}








/* Criteria Section */
.criteria-section {
    background: var(--bg-white);
}

.criteria-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 2rem;
}

.criteria-card {
    background: var(--bg-gray);
    padding: 2.5rem;
    border-radius: 12px;
    border: 2px solid transparent;
    transition: all 0.3s;
}

.criteria-card:hover {
    border-color: var(--secondary-green);
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.criteria-header {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.criteria-icon {
    font-size: 3.5rem;
    flex-shrink: 0;
}

.criteria-title {
    font-size: 1.5rem;
    color: var(--primary-green);
    font-weight: 700;
    line-height: 1.3;
    margin-top: 0.5rem;
}

.criteria-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    font-weight: 600;
    margin-bottom: 1rem;
    padding-left: 1rem;
    border-left: 3px solid var(--secondary-green);
}

.criteria-list {
    list-style: none;
    padding: 0;
}

.criteria-list li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--text-secondary);
    line-height: 1.6;
    border-bottom: 1px solid var(--border-light);
}

.criteria-list li:last-child {
    border-bottom: none;
}

.criteria-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--secondary-green);
    font-weight: bold;
    font-size: 1.2rem;
}

.criteria-list li strong {
    color: var(--primary-green);
    font-weight: 700;
}

/* Responsive */
@media (max-width: 768px) {
    .criteria-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .criteria-card {
        padding: 2rem;
    }

    .criteria-header {
        flex-direction: column;
        gap: 1rem;
    }

    .criteria-icon {
        font-size: 3rem;
    }

    .criteria-title {
        font-size: 1.25rem;
        margin-top: 0;
    }

    .criteria-list li {
        padding: 0.6rem 0;
        padding-left: 1.75rem;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .criteria-card {
        padding: 1.5rem;
    }

    .criteria-icon {
        font-size: 2.5rem;
    }

    .criteria-title {
        font-size: 1.15rem;
    }

    .criteria-subtitle {
        font-size: 1rem;
    }
}


/* Benefits Section */
.benefits-section {
    background: linear-gradient(135deg, #f0f7ee 0%, #e8f5e6 100%);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.benefit-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    transition: all 0.3s;
    border: 2px solid transparent;
    box-shadow: var(--shadow-sm);
}

.benefit-card:hover {
    border-color: var(--secondary-green);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.benefit-icon {
    font-size: 3rem;
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--light-green);
    border-radius: 12px;
}

.benefit-content {
    flex: 1;
}

.benefit-title {
    font-size: 1.25rem;
    color: var(--primary-green);
    font-weight: 700;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.benefit-desc {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 1rem;
}

/* Responsive */
@media (max-width: 768px) {
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .benefit-card {
        padding: 1.5rem;
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .benefit-icon {
        font-size: 2.5rem;
        width: 60px;
        height: 60px;
    }

    .benefit-title {
        font-size: 1.15rem;
    }

    .benefit-desc {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .benefit-card {
        padding: 1.25rem;
    }

    .benefit-icon {
        font-size: 2rem;
        width: 50px;
        height: 50px;
    }

    .benefit-title {
        font-size: 1.1rem;
    }
}
