:root {
    --primary-green: #10b981;
    --primary-green-dark: #059669;
    --primary-blue-dark: #0f172a;
    --primary-blue: #1e3a8a;
    --accent-blue: #3b82f6;
    --dark-gray: #1f2937;
    --medium-gray: #4b5563;
    --light-gray: #9ca3af;
    --background-light: #f8fafc;
    --white: #ffffff;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --shadow-green: 0 0 60px rgba(16, 185, 129, 0.4);
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

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

.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    padding: 12px 24px;
    background: var(--primary-green-dark);
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    z-index: 10001;
    transition: top 0.3s ease;
}

.skip-link:focus {
    top: 0;
}

*:focus-visible {
    outline: 3px solid var(--primary-green-dark);
    outline-offset: 2px;
    border-radius: 4px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.7;
    color: var(--dark-gray);
    background-color: var(--white);
    overflow-x: hidden;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}

.header.scrolled {
    box-shadow: var(--shadow-md);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 14px;
}

.logo-icon {
    width: 60px;
    height: 60px;
}

.logo-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-name {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: -0.5px;
    color: var(--dark-gray);
}

.logo-subtitle {
    font-size: 11px;
    color: var(--medium-gray);
    font-weight: 500;
    letter-spacing: 0.3px;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav-toggle span {
    width: 26px;
    height: 3px;
    background-color: var(--dark-gray);
    border-radius: 2px;
    transition: var(--transition-normal);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
}

.nav-link {
    text-decoration: none;
    color: var(--medium-gray);
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 0.2px;
    position: relative;
    transition: var(--transition-fast);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-green), var(--primary-green-dark));
    transition: var(--transition-normal);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-green-dark);
}

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.9) 0%, rgba(30, 58, 138, 0.85) 50%, rgba(5, 150, 105, 0.8) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 120px 0 80px;
    max-width: 1000px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-block;
    padding: 10px 28px;
    background: rgba(16, 185, 129, 0.15);
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: #34d399;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 36px;
    animation: glow 2.5s ease-in-out infinite;
}

@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 12px rgba(16, 185, 129, 0.2);
    }
    50% {
        box-shadow: 0 0 28px rgba(16, 185, 129, 0.45);
    }
}

.hero-title {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.15;
    color: var(--white);
    margin-bottom: 28px;
    letter-spacing: -1.5px;
}

.highlight {
    background: linear-gradient(90deg, #34d399, #10b981);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.hero-description {
    font-size: 20px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    max-width: 800px;
    margin: 0 auto 48px;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 64px;
    margin-top: 60px;
}

.hero-stat {
    text-align: center;
}

.hero-stat-number {
    display: block;
    font-size: 48px;
    font-weight: 800;
    background: linear-gradient(90deg, #34d399, #10b981);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.hero-stat-label {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.6);
    font-size: 24px;
    animation: bounce 2s infinite;
    z-index: 1;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
        opacity: 0.6;
    }
    40% {
        transform: translateX(-50%) translateY(-12px);
        opacity: 1;
    }
    60% {
        transform: translateX(-50%) translateY(-6px);
        opacity: 0.8;
    }
}

section {
    padding: 120px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-subtitle {
    display: inline-block;
    padding: 8px 24px;
    background: rgba(16, 185, 129, 0.1);
    color: var(--primary-green-dark);
    border-radius: 6px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
}

.section-title {
    font-size: 44px;
    font-weight: 800;
    color: var(--dark-gray);
    letter-spacing: -1px;
    margin-bottom: 16px;
}

.section-description {
    font-size: 18px;
    color: var(--medium-gray);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

.overview {
    background-color: var(--background-light);
}

.overview-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.overview-text h3 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 24px;
    color: var(--dark-gray);
}

.overview-text p {
    color: var(--medium-gray);
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.8;
}

.overview-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.info-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 24px;
    background: var(--white);
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}

.info-card:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-md);
}

.info-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.12), rgba(5, 150, 105, 0.12));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-green-dark);
    font-size: 24px;
    flex-shrink: 0;
}

.info-details {
    display: flex;
    flex-direction: column;
}

.info-details strong {
    font-size: 14px;
    color: var(--medium-gray);
    font-weight: 600;
    margin-bottom: 4px;
}

.info-details span {
    font-size: 16px;
    color: var(--dark-gray);
    font-weight: 700;
}

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

.technical-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.technical-card {
    background: var(--white);
    border: 1px solid #e5e7eb;
    border-radius: 20px;
    padding: 48px 32px;
    text-align: center;
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.technical-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-green), var(--primary-green-dark));
}

.technical-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-2xl);
    border-color: rgba(16, 185, 129, 0.2);
}

.technical-icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.12), rgba(5, 150, 105, 0.12));
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-green-dark);
    font-size: 32px;
    margin: 0 auto 28px;
    transition: var(--transition-normal);
}

.technical-card:hover .technical-icon {
    background: linear-gradient(135deg, var(--primary-green), var(--primary-green-dark));
    color: var(--white);
    transform: rotate(5deg) scale(1.15);
    box-shadow: 0 0 40px rgba(16, 185, 129, 0.45);
}

.technical-number {
    font-size: 48px;
    font-weight: 800;
    background: linear-gradient(90deg, var(--primary-green), var(--primary-green-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
    line-height: 1;
}

.technical-label {
    font-size: 15px;
    font-weight: 600;
    color: var(--medium-gray);
    line-height: 1.4;
}

.investment {
    margin-top: 64px;
    background: linear-gradient(135deg, var(--primary-blue-dark) 0%, var(--primary-blue) 100%);
    border-radius: 24px;
    padding: 48px;
}

.investment-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 32px;
}

.investment-header i {
    font-size: 32px;
    color: #34d399;
}

.investment-header h3 {
    font-size: 28px;
    font-weight: 800;
    color: var(--white);
}

.investment-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.investment-item {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    padding: 32px;
    text-align: center;
}

.investment-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.investment-value {
    display: block;
    font-size: 28px;
    font-weight: 800;
    color: var(--white);
}

.technical-note {
    margin-top: 32px;
    padding: 24px;
    background: #f0fdf4;
    border-left: 4px solid #10b981;
    border-radius: 0 12px 12px 0;
}

.technical-note p {
    color: #166534;
    font-size: 15px;
    font-weight: 600;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.technical-note i {
    font-size: 18px;
    flex-shrink: 0;
}

.infrastructure {
    background-color: var(--background-light);
}

.infrastructure-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.infrastructure-map {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.infrastructure-map img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.3) 0%, rgba(30, 58, 138, 0.2) 100%);
}

.infrastructure-right h3 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 32px;
    color: var(--dark-gray);
}

.infra-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
}

.infra-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px 0;
}

.infra-item i {
    color: var(--primary-green-dark);
    font-size: 20px;
    margin-top: 2px;
    flex-shrink: 0;
    line-height: 1.5;
}

.infra-item span {
    color: var(--medium-gray);
    font-size: 16px;
    line-height: 1.6;
}

.infra-highlight {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 28px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(59, 130, 246, 0.1));
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 16px;
}

.infra-highlight i {
    font-size: 40px;
    color: var(--primary-green-dark);
}

.infra-highlight strong {
    display: block;
    font-size: 18px;
    font-weight: 800;
    color: var(--dark-gray);
    margin-bottom: 4px;
}

.infra-highlight span {
    display: block;
    font-size: 15px;
    color: var(--medium-gray);
}

.impact {
    background: linear-gradient(135deg, var(--primary-blue-dark) 0%, var(--primary-blue) 100%);
}

.impact .section-subtitle {
    background: rgba(16, 185, 129, 0.18);
    color: #34d399;
}

.impact .section-title {
    color: var(--white);
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.impact-section {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 24px;
    padding: 48px 32px;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: var(--transition-normal);
}

.impact-section:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(16, 185, 129, 0.5);
    box-shadow: 0 0 50px rgba(16, 185, 129, 0.25);
}

.impact-icon {
    width: 72px;
    height: 72px;
    background: rgba(16, 185, 129, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #34d399;
    font-size: 30px;
    margin: 0 auto 24px;
    transition: var(--transition-normal);
}

.impact-section:hover .impact-icon {
    background: linear-gradient(135deg, var(--primary-green), var(--primary-green-dark));
    color: var(--white);
    transform: scale(1.15);
    box-shadow: 0 0 40px rgba(16, 185, 129, 0.5);
}

.impact-section h3 {
    font-size: 22px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 32px;
}

.impact-stats {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.impact-stat {
    text-align: center;
}

.impact-number {
    font-size: 48px;
    font-weight: 800;
    background: linear-gradient(90deg, #34d399, #10b981);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
    line-height: 1;
}

.impact-label {
    font-size: 15px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.4;
}

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

.sustainability-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.sustainability-icon {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.15), rgba(5, 150, 105, 0.15));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-green-dark);
    font-size: 56px;
    margin: 0 auto 32px;
    animation: pulse-green 3s ease-in-out infinite;
}

@keyframes pulse-green {
    0%, 100% {
        box-shadow: 0 0 30px rgba(16, 185, 129, 0.3);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 0 60px rgba(16, 185, 129, 0.6);
        transform: scale(1.05);
    }
}

.sustainability-number {
    font-size: 72px;
    font-weight: 800;
    background: linear-gradient(90deg, var(--primary-green), var(--primary-green-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 12px;
    line-height: 1;
}

.sustainability-label {
    font-size: 24px;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 32px;
}

.sustainability-text p {
    font-size: 18px;
    color: var(--medium-gray);
    line-height: 1.8;
}

.status {
    background-color: var(--background-light);
}

.status-timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    padding-left: 40px;
}

.status-timeline::before {
    content: '';
    position: absolute;
    left: 12px;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--primary-green), var(--primary-green-dark));
    border-radius: 2px;
}

.timeline-item {
    position: relative;
    padding-bottom: 48px;
}

.timeline-item:last-child {
    padding-bottom: 0;
}

.timeline-dot {
    position: absolute;
    left: -40px;
    top: 0;
    width: 28px;
    height: 28px;
    background: var(--primary-green-dark);
    border: 4px solid var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 12px;
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.4);
}

.timeline-item.active .timeline-dot {
    background: var(--primary-blue);
    animation: pulse-blue 2s ease-in-out infinite;
}

@keyframes pulse-blue {
    0%, 100% {
        box-shadow: 0 0 20px rgba(59, 130, 246, 0.4);
    }
    50% {
        box-shadow: 0 0 40px rgba(59, 130, 246, 0.8);
    }
}

.timeline-content h4 {
    font-size: 20px;
    font-weight: 800;
    color: var(--dark-gray);
    margin-bottom: 8px;
}

.timeline-content p {
    font-size: 16px;
    color: var(--medium-gray);
    font-weight: 500;
}

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

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.gallery-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
    aspect-ratio: 4/3;
}

.gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-2xl);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.footer {
    background: linear-gradient(135deg, var(--primary-blue-dark) 0%, var(--primary-blue) 100%);
    padding: 100px 0 0;
    color: var(--white);
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 80px;
    padding-bottom: 70px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 28px;
}

.footer-logo .logo-icon {
    filter: brightness(0) invert(1);
}

.footer-logo .logo-name {
    color: var(--white);
}

.footer-logo .logo-subtitle {
    color: rgba(255, 255, 255, 0.7);
}

.footer-about p {
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.9;
    font-size: 16px;
}

.footer-info h4 {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 28px;
    color: var(--white);
}

.footer-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    color: rgba(255, 255, 255, 0.75);
    font-size: 16px;
}

.footer-item i {
    color: #34d399;
    margin-top: 3px;
    font-size: 18px;
}

.footer-bottom {
    padding: 36px 0;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 15px;
}

.scroll-top {
    position: fixed;
    bottom: 36px;
    right: 36px;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary-green), var(--primary-green-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 20px;
    text-decoration: none;
    box-shadow: var(--shadow-green);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition-normal);
    z-index: 999;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top:hover {
    transform: translateY(-6px) scale(1.1);
    box-shadow: 0 0 50px rgba(16, 185, 129, 0.6);
}

@media (max-width: 1024px) {
    .hero-title {
        font-size: 44px;
    }
    
    .hero-stats {
        gap: 48px;
    }
    
    .overview-content,
    .infrastructure-content {
        grid-template-columns: 1fr;
    }
    
    .technical-grid,
    .impact-grid,
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .investment-content {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 48px;
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 90px;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 28px;
        gap: 18px;
        box-shadow: var(--shadow-lg);
        transform: translateY(-120%);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition-normal);
    }
    
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-description {
        font-size: 17px;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 32px;
    }
    
    .section-title {
        font-size: 34px;
    }
    
    .technical-grid,
    .impact-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .sustainability-number {
        font-size: 56px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 30px;
    }
    
    .section-title {
        font-size: 28px;
    }
}
