:root {
    --light: #f7f6f1;
    --camo-dark: #1f2a22;
    --camo-olive: #5c8c5e;
    --camo-green: #5c8c5e;
    --accent: #e4c17d;
    --header-height: 76px;
}

html {
    font-family: 'Inter', sans-serif;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--camo-dark);
    background: #fff;
}

body, button, input, select, textarea {
    font-family: 'Inter', sans-serif;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 4%;
    background: linear-gradient(180deg, rgba(28,36,30,0.96), rgba(31,42,34,0.96));
    color: white;
    box-shadow: 0 6px 22px rgba(0, 0, 0, 0.18);
    transition: background 0.3s ease, transform 0.3s ease;
}

.logo {
    font-size: 2.1rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 12px;
    letter-spacing: -1.5px;
}

.logo img {
    width: 52px;
    height: 52px;
    object-fit: cover;
    display: block;
    border: none; /* removed visible border */
    border-radius: 6px; /* subtle rounded corner for badge look */
    box-shadow: 0 6px 18px rgba(0,0,0,0.14);
}
.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

/* Skip link visible on focus */
.skip-link {
    position: absolute;
    left: 1rem;
    top: 0.6rem;
    background: #fff;
    color: var(--camo-dark);
    padding: 8px 12px;
    border-radius: 6px;
    z-index: 9999;
    transform: translateY(-120%);
    transition: transform 0.18s ease;
}
.skip-link:focus {
    transform: translateY(0);
    outline: 3px solid var(--accent);
}

/* Mobile nav toggle */
.nav-toggle {
    background: transparent;
    border: none;
    color: white;
    display: none;
    font-size: 1.6rem;
    padding: 6px;
    cursor: pointer;
}

nav#site-nav {
    display: block;
}

@media (max-width: 900px) {
    .nav-toggle { display: inline-flex; }
    nav#site-nav { display: none; }
    nav#site-nav.open { display: block; position: absolute; right: 4%; top: var(--header-height); background: rgba(255,255,255,0.98); color: var(--camo-dark); padding: 12px 18px; border-radius: 10px; box-shadow: 0 10px 30px rgba(0,0,0,0.12); }
    .nav-links { flex-direction: column; gap: 1rem; }
    .nav-links a { color: var(--camo-dark); }
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s;
}

.nav-links a:hover {
    color: var(--accent);
    transform: translateY(-2px);
}

/* HERO */
.hero {
    background: linear-gradient(180deg, rgba(20,28,22,0.85), rgba(31,42,34,0.7)), url('images/stock-imgs/ryan-arnst-43R4OjjGiV8-unsplash.jpg') center/cover no-repeat fixed;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-top: 0;
    position: relative;
    padding: 4rem 1rem;
}

section.hero {
    padding: 0;
}

.hero-content {
    max-width: 1000px;
    padding: 2rem 1rem;
    z-index: 5;
    position: relative;
}

/* Animated text entry */
@keyframes slideUpFade {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero-title-animated {
    animation: slideUpFade 0.8s ease-out 0.3s backwards;
}

.hero-subtitle-animated {
    animation: slideUpFade 0.8s ease-out 0.6s backwards;
}

.hero .btn {
    animation: slideUpFade 0.8s ease-out 0.9s backwards;
}

/* Age Groups Badge */
.age-groups-badge {
    display: flex;
    justify-content: center;
    gap: 1.2rem;
    margin: 1.5rem 0 2rem;
    flex-wrap: wrap;
}

.age-badge {
    background: linear-gradient(135deg, var(--accent), rgba(228,193,125,0.9));
    color: var(--camo-dark);
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 900;
    font-size: 1.1rem;
    box-shadow: 0 8px 20px rgba(228,193,125,0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.age-badge:hover {
    transform: translateY(-6px) scale(1.08);
    box-shadow: 0 12px 30px rgba(228,193,125,0.5);
}

.hero-logo {
    display: block;
    margin: 0 auto 1rem;
    width: clamp(110px, 18vw, 180px);
    height: auto;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.18);
}

.hero h1 {
    font-size: clamp(2.4rem, 6vw, 4.2rem);
    margin-bottom: 0.6rem;
    font-weight: 900;
    letter-spacing: -1px;
    text-shadow: 0 6px 22px rgba(0,0,0,0.45);
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.hero-subtitle {
    font-size: 1.35rem;
    max-width: 780px;
    margin: 0 auto 2.5rem;
    opacity: 0.95;
}

.featured-players {
    background: #f7f6f1;
    padding: 100px 20px;
}

.player-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    align-items: stretch;
}

.player-card {
    background: linear-gradient(180deg, #ffffff, #fbfbfb);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(18,30,18,0.06);
    transition: transform 0.32s cubic-bezier(.2,.9,.2,1), box-shadow 0.32s ease;
}

.player-card:hover {
    transform: translateY(-10px) scale(1.01);
    box-shadow: 0 30px 60px rgba(18,30,18,0.12);
}

.player-card img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    display: block;
}

.player-info {
    padding: 1.6rem;
    text-align: center;
}

.player-info h3 {
    margin-bottom: 0.8rem;
    font-size: 1.45rem;
    color: var(--camo-dark);
}

.player-info p {
    color: #111;
    line-height: 1.5;
    font-size: 1.15rem;
    font-weight: 700;
    margin: 0;
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
        color: white;
    }

    .hero-subtitle {
        font-size: 1.35rem;
        max-width: 780px;
        margin: 0 auto 2.5rem;
        color: rgba(255,255,255,0.9);
    font-size: 1.15rem;
    margin-bottom: 1.8rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.btn {
    display: inline-block;
    background: linear-gradient(90deg, var(--camo-olive), #3f6f45);
    color: white;
    padding: 14px 34px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 800;
    font-size: 1rem;
    transition: transform 0.28s ease, box-shadow 0.28s ease;
    border: none;
    box-shadow: 0 10px 30px rgba(36,60,36,0.18);
}

.btn:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(36,60,36,0.18);
}

/* General Sections */
.container {
    max-width: 1350px;
    margin: 0 auto;
}

section {
    padding: 100px 20px;
    scroll-margin-top: var(--header-height);
}

h2 {
    font-size: 3.1rem;
    text-align: center;
    margin-bottom: 3.5rem;
    color: var(--camo-dark);
    font-weight: 700;
}

h3 {
    margin: 0;
}

/* About */
.about {
    background: white;
}

.about-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-content h2 {
    text-align: left;
    margin-bottom: 1.5rem;
}

.about-text {
    max-width: 100%;
    text-align: left;
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--camo-dark);
}

.about-image {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.about-image:hover img {
    transform: scale(1.04);
}

@media (max-width: 900px) {
    .about-wrapper {
        grid-template-columns: 1fr;
    }
    
    .about-content h2 {
        text-align: center;
    }
    
    .about-text {
        text-align: center;
    }
}

/* Programs */
.programs {
    background: linear-gradient(135deg, rgba(240, 237, 228, 0.25), rgba(240, 237, 228, 0.25)), 
                url('images/stock-imgs/jimmy-conover-SEQ2VI0KI6A-unsplash.jpg') center/cover;
}

.programs h2 {
    color: white;
}

.program-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
}

.summer-baseball {
    background: linear-gradient(135deg, rgba(92, 140, 94, 0.14), rgba(31, 42, 34, 0.06));
}

.summer-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 2rem;
    align-items: center;
}

.summer-baseball p {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--camo-dark);
    max-width: 760px;
}

.summer-baseball ul {
    list-style: none;
    padding: 0;
    margin: 0;
    color: var(--camo-dark);
    font-size: 1.1rem;
    line-height: 2.2;
}

.summer-baseball ul li {
    position: relative;
    padding-left: 2.5rem;
}

.summer-baseball ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--camo-olive);
    font-weight: 700;
}

.summer-baseball .btn {
    justify-self: start;
    margin-top: 1.5rem;
}

@media (max-width: 900px) {
    .summer-content {
        grid-template-columns: 1fr;
    }
}

.program-card {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(12px);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.program-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.18);
    background: rgba(255, 255, 255, 0.85);
}

.program-card h3 {
    background: linear-gradient(135deg, var(--camo-green), var(--camo-olive));
    color: white;
    padding: 1.4rem;
    text-align: center;
    font-size: 1.75rem;
    font-weight: 700;
}

.card-content {
    padding: 2.2rem;
    text-align: center;
}

.card-content ul {
    list-style: none;
    margin: 0;
    padding: 0;
    line-height: 2.4;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--camo-dark);
}

.card-content li {
    margin: 0.8rem 0;
}

/* Skills */
.skills {
    background: var(--camo-dark);
    color: white;
}

.skills h2 {
    color: white;
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 2.5rem;
}

.skill-item {
    background: rgba(255,255,255,0.1);
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid rgba(212, 200, 156, 0.2);
    transition: all 0.3s;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.skill-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    transition: transform 0.4s ease;
}

.skill-item:hover .skill-image {
    transform: scale(1.08);
}

.skill-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.skill-item h3 {
    margin-bottom: 1rem;
    font-size: 1.7rem;
    color: white;
}

.skill-item p {
    color: rgba(255,255,255,0.9);
    font-size: 1rem;
    line-height: 1.6;
}

.skill-item:hover {
    border-color: var(--accent);
    transform: translateY(-8px);
}

/* Testimonials */
.testimonials {
    background: white;
    padding: 100px 20px;
}

.testimonials h2 {
    margin-bottom: 4rem;
    color: var(--camo-dark);
}

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

.testimonial-card {
    background: #f7f6f1;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 35px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    padding: 2rem;
    display: flex;
    flex-direction: column;
}

.testimonial-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 45px rgba(0,0,0,0.15);
}

.testimonial-image {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1.5rem;
    display: block;
    box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}

.testimonial-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.stars {
    font-size: 1.3rem;
    color: var(--accent);
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.testimonial-card p {
    font-size: 1rem;
    line-height: 1.7;
    margin: 1rem 0;
    color: var(--camo-dark);
}

.testimonial-card h4 {
    margin-top: auto;
    margin-bottom: 0.3rem;
    font-size: 1.1rem;
    color: var(--camo-dark);
    font-weight: 700;
}

.testimonial-card .role {
    font-size: 0.9rem;
    color: #999;
    margin: 0;
}

/* Exposure */
.exposure {
    background: white;
}

.exposure-text {
    text-align: center;
    font-size: 1.4rem;
    max-width: 820px;
    margin: 0 auto 4rem;
    line-height: 1.7;
}

/* CTA */
.contact-cta {
    background: linear-gradient(135deg, rgba(92, 140, 94, 0.85), rgba(79, 115, 71, 0.85)), url('images/stock-imgs/phil-goodwin-2mOZxZV51xk-unsplash\ \(1\).jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    text-align: center;
    padding: 120px 20px;
}

#contact {
    background: linear-gradient(135deg, var(--camo-green), var(--camo-olive));
    color: white;
    text-align: center;
    padding: 120px 20px;
}

.cta-text {
    font-size: 1.4rem;
    max-width: 720px;
    margin: 0 auto 3rem;
}

.contact-info {
    margin-top: 3rem;
    opacity: 0.95;
    font-size: 1.1rem;
}

/* Footer */
footer {
    background: var(--camo-dark);
    color: #ddd;
    padding: 80px 20px 40px;
}

.footer-content {
    max-width: 1350px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 3rem;
}

.copyright {
    text-align: center;
    margin-top: 70px;
    opacity: 0.6;
    font-size: 0.95rem;
}

/* Focus styles for accessibility */
a:focus, button:focus, input:focus, select:focus, textarea:focus {
    outline: 3px solid rgba(196,154,71,0.24);
    outline-offset: 2px;
}

/* Signup page styles (moved from inline in signup.html) */
.signup-section {
    min-height: 100vh;
    padding: 150px 20px 100px;
    background: white;
}

.signup-container {
    max-width: 600px;
    margin: 0 auto;
}

.signup-container h1 {
    font-size: 2.5rem;
    color: var(--camo-dark);
    margin-bottom: 0.5rem;
    text-align: center;
}

.signup-intro {
    text-align: center;
    color: #666;
    margin-bottom: 2.5rem;
    font-size: 1.1rem;
}

.form-group {
    margin-bottom: 1.8rem;
}

.form-group label,
fieldset legend {
    display: block;
    font-weight: 700;
    margin-bottom: 0.6rem;
    color: var(--camo-dark);
    font-size: 1.05rem;
}

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--camo-olive);
}

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

.radio-group,
.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.radio-option,
.checkbox-option {
    display: flex;
    align-items: center;
    gap: 10px;
}

.radio-option input[type="radio"],
.checkbox-option input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.radio-option label,
.checkbox-option label {
    margin: 0;
    cursor: pointer;
    font-weight: 500;
}

.submit-btn {
    width: 100%;
    padding: 16px;
    background: var(--camo-olive);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 1rem;
}

.submit-btn:hover {
    background: var(--camo-green);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(58,95,62,0.3);
}

.back-link {
    text-align: center;
    margin-top: 2rem;
}

.back-link a {
    color: var(--camo-green);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.back-link a:hover {
    color: var(--camo-olive);
}

.form-status {
    margin: 1rem 0 0;
    padding: 14px 16px;
    border-radius: 8px;
    background: #e6f7ea;
    color: #13421a;
    font-weight: 600;
    display: none;
}

.form-status.show {
    display: block;
}

/* Utility for screen-reader-only text */
.sr-only {
    position: absolute !important;
    height: 1px; width: 1px;
    overflow: hidden;
    clip: rect(1px, 1px, 1px, 1px);
    white-space: nowrap;
}

/* Fix for parallax-like fixed backgrounds on mobile */
@media (max-width: 900px) {
    .contact-cta {
        background-attachment: scroll;
    }
}

/* TESTIMONIALS CAROUSEL */
.testimonials-carousel {
    position: relative;
    max-width: 900px;
    margin: 0 auto 3rem;
    min-height: 280px;
}

.testimonial-item {
    position: absolute;
    width: 100%;
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
    pointer-events: none;
}

.testimonial-item.active {
    position: relative;
    opacity: 1;
    pointer-events: all;
}

.testimonials-controls {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-prev, .testimonial-next {
    background: var(--camo-olive);
    color: white;
    border: none;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.4rem;
    transition: all 0.3s ease;
}

.testimonial-prev:hover, .testimonial-next:hover {
    background: var(--camo-green);
    transform: scale(1.1) translateY(-4px);
    box-shadow: 0 8px 20px rgba(58,95,62,0.3);
}

/* INVESTOR / SPONSORSHIP SECTION */
.investors {
    background: linear-gradient(135deg, #f7f6f1, #ffffff);
    padding: 100px 20px;
}

.investors h2 {
    color: var(--camo-dark);
    margin-bottom: 1rem;
}

.investors-intro {
    text-align: center;
    font-size: 1.2rem;
    color: #555;
    max-width: 700px;
    margin: 0 auto 4rem;
    line-height: 1.7;
}

.tier-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 5rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.tier-card {
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 16px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

.tier-card.featured {
    border-color: var(--accent);
    background: linear-gradient(135deg, rgba(228,193,125,0.08), rgba(228,193,125,0.04));
    transform: scale(1.05);
    box-shadow: 0 20px 50px rgba(228,193,125,0.2);
}

.tier-card:not(.featured):hover {
    border-color: var(--camo-olive);
    transform: translateY(-12px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.12);
}

.tier-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: var(--camo-dark);
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
}

.tier-header {
    margin-bottom: 2rem;
}

.tier-header h3 {
    font-size: 1.5rem;
    color: var(--camo-dark);
    margin-bottom: 0.5rem;
}

.tier-amount {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--camo-olive);
}

.tier-benefits {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
    text-align: left;
    flex: 1;
}

.tier-benefits li {
    padding: 1rem 0;
    border-bottom: 1px solid #f0f0f0;
    color: #555;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.tier-benefits li:last-child {
    border-bottom: none;
}

.tier-benefits i {
    color: var(--camo-olive);
    font-size: 1.2rem;
}

.btn-sponsor {
    margin-top: auto;
    padding: 12px 28px;
    font-size: 0.95rem;
}

/* IMPACT STATS */
@media (max-width: 1000px) {
    .tier-card.featured {
        transform: scale(1);
    }
    
    .program-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .program-grid {
        grid-template-columns: 1fr;
    }
    
    .tier-grid {
        grid-template-columns: 1fr;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .testimonials-controls {
        gap: 1rem;
    }
    
    .testimonial-prev, .testimonial-next {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
}

/* CTA SECTION */
.cta-section {
    background: linear-gradient(135deg, var(--camo-olive), #3f6f45);
    color: white;
    padding: 4rem 1rem;
    text-align: center;
}

.cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    font-weight: 800;
}

.cta-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.btn-cta {
    padding: 16px 40px;
    font-size: 1.05rem;
    font-weight: 700;
}

/* FOOTER */
footer {
    background: var(--camo-dark);
    color: white;
    padding: 3rem 1rem 1.5rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    max-width: 1200px;
    margin: 0 auto 2rem;
    gap: 2.5rem;
}

.footer-section h3 {
    font-size: 1rem;
    margin-bottom: 0.8rem;
    color: var(--accent);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-section p {
    margin: 0.6rem 0;
    line-height: 1.5;
    color: #c0c0c0;
    font-size: 0.9rem;
}

.footer-section p a {
    color: var(--accent);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section p a:hover {
    color: #fff;
}

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

.footer-section ul li {
    margin: 0.5rem 0;
}

.footer-section ul li a {
    color: #c0c0c0;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.9rem;
}

.footer-section ul li a:hover {
    color: var(--accent);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 1.5rem;
    text-align: center;
    color: #808080;
    font-size: 0.85rem;
}

@media (max-width: 900px) {
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 600px) {
    .cta-section {
        padding: 3rem 1rem;
    }
    
    .cta-content h2 {
        font-size: 1.6rem;
    }
    
    .cta-content p {
        font-size: 1rem;
    }
    
    footer {
        padding: 2rem 1rem 1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-section h3 {
        font-size: 0.9rem;
    }
}