/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-blue: #1a3a5c;
    --secondary-blue: #4a7cb5;
    --accent-yellow: #f5d000;
    --light-blue: #e8f4fc;
    --white: #ffffff;
    --dark-text: #1a1a2e;
    --gray-text: #555555;
    --light-gray: #f5f5f5;
}

body {
    font-family: "Rubik", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    line-height: 1.6;
    color: var(--dark-text);
    background-color: var(--white);
}

/* Rubik Font Utility Classes */
.rubik-light {
    font-family: "Rubik", sans-serif;
    font-optical-sizing: auto;
    font-weight: 300;
    font-style: normal;
}

.rubik-regular {
    font-family: "Rubik", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}

.rubik-medium {
    font-family: "Rubik", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
}

.rubik-semibold {
    font-family: "Rubik", sans-serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
}

.rubik-bold {
    font-family: "Rubik", sans-serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
}

.rubik-extrabold {
    font-family: "Rubik", sans-serif;
    font-optical-sizing: auto;
    font-weight: 800;
    font-style: normal;
}

.rubik-black {
    font-family: "Rubik", sans-serif;
    font-optical-sizing: auto;
    font-weight: 900;
    font-style: normal;
}

/* Electrolize Font Utility Class */
.electrolize-regular {
    font-family: "Electrolize", sans-serif;
    font-weight: 400;
    font-style: normal;
}

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

/* Header Styles */
.header {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 12px;
}

.logo img {
    height: 60px;
    width: auto;
}

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

.logo-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-blue);
}

.logo-subtitle {
    font-size: 0.75rem;
    color: var(--gray-text);
}

/* Navigation */
.nav-list {
    display: flex;
    list-style: none;
    gap: 5px;
}

.nav-list > li {
    position: relative;
}

.nav-list a {
    display: block;
    padding: 10px 15px;
    text-decoration: none;
    color: var(--dark-text);
    font-weight: 500;
    transition: color 0.3s, background-color 0.3s;
    border-radius: 5px;
}

.nav-list a:hover,
.nav-list a.active {
    color: var(--white);
    background-color: var(--primary-blue);
}

/* Dropdown Menu */
.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--white);
    min-width: 220px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    border-radius: 5px;
    list-style: none;
    z-index: 100;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-menu li a {
    padding: 12px 20px;
    border-radius: 0;
}

.dropdown-menu li:first-child a {
    border-radius: 5px 5px 0 0;
}

.dropdown-menu li:last-child a {
    border-radius: 0 0 5px 5px;
}

/* Hero Section */
.hero {
    background-image: url('../images/slider0.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: var(--white);
    padding: 80px 0;
    text-align: center;
}

.hero.hero-slide {
    background-image: none;
}

.hero-slide--text {
    background-color: var(--primary-blue);
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-slide-image {
    width: 100%;
    max-width: 900px;
    height: auto;
    display: block;
    margin: 0 auto 30px;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}

.hero-logo {
    width: 150px;
    height: auto;
    margin-bottom: 30px;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-tagline {
    font-size: 1.5rem;
    margin-bottom: 10px;
    font-style: italic;
}

.hero-motto {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 30px;
}

.hero-banner {
    background-color: var(--accent-yellow);
    color: var(--dark-text);
    padding: 15px 30px;
    display: inline-block;
    font-weight: 700;
    font-size: 1rem;
    border-radius: 5px;
    margin-top: 20px;
}

/* Section Styles */
.section {
    padding: 80px 0;
}

.section p {
    text-align: justify;
}

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

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

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2rem;
    color: var(--primary-blue);
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--accent-yellow);
}

.section-title p {
    color: var(--gray-text);
    max-width: 600px;
    margin: 20px auto 0;
    text-align: center;
}

/* Feature Cards */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.feature-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background-color: var(--light-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: var(--primary-blue);
}

.feature-card h3 {
    color: var(--primary-blue);
    margin-bottom: 15px;
    font-size: 1.25rem;
}

.feature-card p {
    color: var(--gray-text);
    font-size: 0.95rem;
    text-align: justify;
}

/* About Content */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: stretch;
}

.about-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-image img {
    width: auto;
    height: 100%;
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    object-fit: cover;
}

.about-text h3 {
    color: var(--primary-blue);
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.about-text p {
    color: var(--gray-text);
    margin-bottom: 15px;
    text-align: justify;
}

/* Team Grid */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.team-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.team-avatar {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 3rem;
    font-weight: bold;
    overflow: hidden;
    border: 3px solid var(--light-blue);
}

.team-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-card h3 {
    color: var(--primary-blue);
    margin-bottom: 5px;
}

.team-card .position {
    color: var(--accent-yellow);
    font-weight: 600;
    background-color: var(--primary-blue);
    padding: 5px 15px;
    border-radius: 20px;
    display: inline-block;
    font-size: 0.85rem;
    margin-top: 10px;
}

/* Membership Cards */
.membership-types {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 50px;
}

.membership-card {
    background-color: var(--white);
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border-left: 4px solid var(--primary-blue);
}

.membership-card h3 {
    color: var(--primary-blue);
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.membership-card p {
    color: var(--gray-text);
    font-size: 0.95rem;
    text-align: justify;
}

/* Benefits List */
.benefits-section {
    background-color: var(--white);
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.benefits-section h3 {
    color: var(--primary-blue);
    margin-bottom: 25px;
    font-size: 1.5rem;
    text-align: center;
}

.benefits-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 8px;
}

.benefits-list li {
    padding: 10px 10px 10px 38px;
    background-color: var(--light-blue);
    border-radius: 5px;
    position: relative;
}

.benefits-list li::before {
    content: '✓';
    position: absolute;
    left: 15px;
    color: var(--primary-blue);
    font-weight: bold;
}

/* Events Timeline */
.events-list {
    max-width: 800px;
    margin: 0 auto;
}

.event-item {
    background-color: var(--white);
    padding: 25px 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 20px;
    border-left: 4px solid var(--accent-yellow);
}

.event-item h3 {
    color: var(--primary-blue);
    margin-bottom: 10px;
}

.event-item p {
    color: var(--gray-text);
    text-align: justify;
}

/* Timeline Events */
.timeline-events {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.timeline-item {
    background-color: var(--white);
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    border-left: 4px solid var(--accent-yellow);
}

.timeline-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.timeline-year {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.timeline-content h3 {
    color: var(--primary-blue);
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.timeline-content p {
    color: var(--gray-text);
    line-height: 1.6;
    font-size: 0.95rem;
    text-align: justify;
}

/* Contact Section */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: stretch;
}

.contact-info,
.contact-form {
    background-color: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.contact-form iframe {
    width: 100%;
    min-height: 380px;
    height: 380px;
    border: 0;
    display: block;
}

.contact-info h3 {
    color: var(--primary-blue);
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.contact-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    align-items: flex-start;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background-color: var(--light-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--primary-blue);
    flex-shrink: 0;
}

.contact-details h4 {
    color: var(--primary-blue);
    margin-bottom: 5px;
}

.contact-details p {
    color: var(--gray-text);
    text-align: justify;
}

.contact-form {
    background-color: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.contact-form h3 {
    color: var(--primary-blue);
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.contact-form form {
    display: flex;
    flex-direction: column;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--dark-text);
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--primary-blue);
    color: var(--white);
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
    text-decoration: none;
}

.btn:hover {
    background-color: var(--secondary-blue);
    text-decoration: none;
}

.btn-yellow {
    background-color: var(--accent-yellow);
    color: var(--dark-text);
}

.btn-yellow:hover {
    background-color: #e0c000;
    text-decoration: none;
}

/* Payment Info */
.payment-info {
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    color: var(--white);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    margin-top: 40px;
}

.payment-info h3 {
    margin-bottom: 15px;
}

.payment-info p {
    font-size: 1.1rem;
    text-align: justify;
}

.payment-info .account {
    background-color: rgba(255, 255, 255, 0.2);
    padding: 15px;
    border-radius: 5px;
    margin-top: 15px;
    font-family: monospace;
    font-size: 1.2rem;
}

/* Footer */
.footer {
    background-color: var(--primary-blue);
    color: var(--white);
    padding: 40px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.4fr 2fr 1.6fr;
    gap: 40px;
    margin-bottom: 25px;
}

.footer-logo {
    width: 80px;
    margin-bottom: 10px;
}

.footer-tagline {
    opacity: 0.9;
    font-style: italic;
    font-size: 0.9rem;
    line-height: 1.5;
}

.footer-section h4 {
    color: var(--accent-yellow);
    margin-bottom: 15px;
    font-size: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section ul a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.85;
    transition: opacity 0.3s;
    font-size: 0.9rem;
}

.footer-section ul a:hover {
    opacity: 1;
}

.footer-section p {
    opacity: 0.9;
    margin-bottom: 4px;
    font-size: 0.9rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    opacity: 0.8;
    margin-bottom: 5px;
    font-size: 0.85rem;
}

.footer-bottom p:first-child {
    color: var(--accent-yellow);
    font-style: italic;
    margin-bottom: 8px;
    font-size: 0.9rem;
}

/* Incentives Grid */
.incentives-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.incentive-card {
    background: var(--white);
    border-radius: 12px;
    padding: 20px 18px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    border-top: 4px solid var(--secondary-blue);
    position: relative;
}

.incentive-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.14);
}

.incentive-card--featured {
    border-top-color: var(--accent-yellow);
    background: linear-gradient(160deg, #fffdf0 0%, var(--white) 60%);
}

.incentive-icon {
    font-size: 2.2rem;
    margin-bottom: 8px;
}

.incentive-badge {
    display: inline-block;
    background-color: var(--light-blue);
    color: var(--primary-blue);
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 3px 10px;
    border-radius: 20px;
    margin-bottom: 8px;
}

.incentive-badge--gold {
    background-color: #fff3cd;
    color: #856404;
}

.incentive-card h3 {
    color: var(--primary-blue);
    font-size: 1rem;
    margin-bottom: 8px;
}

.incentive-card p {
    color: var(--gray-text);
    font-size: 0.85rem;
    line-height: 1.5;
    text-align: justify;
}

/* Achievements Section */
.achievements-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.achievement-card {
    background-color: var(--white);
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.achievement-card h3 {
    color: var(--primary-blue);
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.achievement-card p {
    color: var(--gray-text);
    font-size: 1rem;
    line-height: 1.6;
    text-align: justify;
}

.achievement-card strong {
    color: var(--primary-blue);
    font-weight: 600;
}

/* Stat Counter */
.stats-section {
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    padding: 60px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    text-align: center;
    color: var(--white);
}

.stat-item h3 {
    font-size: 3rem;
    margin-bottom: 10px;
    color: var(--accent-yellow);
}

.stat-item p {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* ── Hero Slider ─────────────────────────────────── */
.hero-slider {
    position: relative;
    overflow: hidden;
    line-height: 0;
    font-size: 0;
    display: block;
}

.hero-slider-track {
    display: flex;
    transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    align-items: stretch;
}

.hero-slide {
    min-width: 100%;
    line-height: 1.6;
    font-size: 1rem;
    display: block;
}

.hero-slide--image {
    line-height: 0;
    font-size: 0;
}

.hero-slide--image img {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
}

.hero-slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(26, 58, 92, 0.65);
    color: #fff;
    border: none;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 20;
    transition: background 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-slider-btn:hover { background: rgba(26, 58, 92, 1); }
.hero-slider-btn.prev { left: 18px; }
.hero-slider-btn.next { right: 18px; }

.hero-slider-dots {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 20;
    line-height: 1;
}

.hero-slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    border: 2px solid rgba(255,255,255,0.8);
    cursor: pointer;
    padding: 0;
    transition: background 0.3s, transform 0.3s;
}

.hero-slider-dot.active {
    background: var(--accent-yellow);
    border-color: var(--accent-yellow);
    transform: scale(1.3);
}

/* ── Responsive Grid Utilities ─────────────────────── */
.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.footer-quicklinks {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 50px;
}

/* Objectives side-by-side layout */
.objectives-side {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 40px;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    flex-direction: column;
    gap: 5px;
    align-self: center;
}

.mobile-menu-btn span {
    display: block;
    width: 26px;
    height: 3px;
    background-color: var(--primary-blue);
    border-radius: 3px;
    transition: transform 0.3s, opacity 0.3s;
}

.mobile-menu-btn.open span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.mobile-menu-btn.open span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.open span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Responsive Design */
@media (max-width: 992px) {
    .header-content {
        flex-direction: column;
        gap: 20px;
    }

    .nav-list {
        flex-wrap: wrap;
        justify-content: center;
    }

    .about-content,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .about-image {
        order: -1;
    }

    .timeline-events,
    .membership-types {
        grid-template-columns: repeat(2, 1fr);
    }

    .achievements-grid,
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .incentives-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 1.8rem;
    }

    .hero-tagline {
        font-size: 1.2rem;
    }

    .section {
        padding: 50px 0;
    }

    .header-content {
        flex-direction: row;
        flex-wrap: wrap;
        align-items: center;
        gap: 0;
    }

    .mobile-menu-btn {
        display: flex;
        margin-left: auto;
    }

    .nav {
        display: none;
        width: 100%;
        order: 3;
        padding: 10px 0;
        background-color: var(--white);
        border-top: 1px solid var(--light-blue);
    }

    .nav.open {
        display: block;
    }

    .nav-list {
        flex-direction: column;
        gap: 0;
        width: 100%;
    }

    .nav-list a {
        padding: 10px 15px;
        font-size: 0.95rem;
        border-radius: 0;
        border-bottom: 1px solid var(--light-blue);
    }
    
    .dropdown > a::after {
        content: ' ▼';
        font-size: 0.7rem;
        margin-left: 5px;
        transition: transform 0.3s;
    }
    
    .dropdown.open > a::after {
        transform: rotate(180deg);
        display: inline-block;
    }

    .dropdown-menu {
        position: static;
        box-shadow: none;
        background-color: var(--light-gray);
        display: none;
        padding-left: 15px;
    }

    .dropdown.open .dropdown-menu {
        display: block;
    }

    .timeline-events,
    .features-grid,
    .membership-types,
    .achievements-grid,
    .incentives-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }

    .grid-2 {
        grid-template-columns: 1fr;
    }

    .footer-quicklinks {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .footer-section {
        margin-bottom: 30px;
    }

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

    .footer-section h4 {
        text-align: left;
    }

    .footer-links {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-quicklinks {
        width: 100%;
    }

    .footer-quicklinks ul {
        width: 100%;
    }

    .footer-section ul {
        padding-left: 0;
    }

    .footer-section ul li {
        margin-bottom: 8px;
    }

    .objectives-side {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .logo img {
        height: 45px;
    }

    .logo-title {
        font-size: 1.2rem;
    }

    .hero {
        padding: 50px 0;
    }

    .hero h1 {
        font-size: 1.5rem;
    }

    .benefits-list,
    .achievements-grid,
    .features-grid,
    .incentives-grid,
    .grid-4,
    .grid-2 {
        grid-template-columns: 1fr;
    }
}
