/* Color Palette */
:root {
    --primary-color: #5c2a10;
    --primary-dark: #3d1a07;
    --primary-light: #8b3f20;
    --accent-color: #e8a852;
    --accent-light: #f0b86f;
    --neutral-light: #f5f5f5;
    --neutral-medium: #e0e0e0;
    --neutral-dark: #333333;
    --white: #ffffff;
    --border-radius: 8px;
    --box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    --box-shadow-lg: 0 4px 16px rgba(0, 0, 0, 0.15);
}

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

html {
    scroll-behavior: smooth;
}

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

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 15px;
}

h1 {
    font-size: 3.5rem;
    color: var(--white);
    margin-bottom: 20px;
}

h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 30px;
}

h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
}

p {
    font-size: 1rem;
    margin-bottom: 15px;
}

/* Navigation */
.navbar {
    background-color: var(--primary-color);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--box-shadow);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.logo-image {
    height: 100px;
    width: auto;
    object-fit: contain;
}

.logo-text {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--accent-color);
    letter-spacing: 1px;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-color);
    letter-spacing: 2px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-links a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--accent-color);
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 3px;
    background-color: var(--accent-color);
}

.social-icons {
    display: flex;
    gap: 15px;
    flex-shrink: 0;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    color: var(--white);
    transition: color 0.3s ease, transform 0.3s ease;
    text-decoration: none;
}

.social-icon:hover {
    color: var(--accent-light);
    transform: scale(1.15);
}

.social-icon svg {
    width: 100%;
    height: 100%;
}

/* Carousel Section */
.carousel-section {
    position: relative;
    width: 100%;
    height: 600px;
    background: var(--primary-dark);
    overflow: hidden;
}

.carousel-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-slide {
    display: none;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
}

.carousel-slide.active {
    display: flex;
    opacity: 1;
    z-index: 10;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-slide:first-child {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-slide:first-child .slide-overlay {
    background: none;
}

.slide-content {
    text-align: center;
    color: var(--white);
    max-width: 800px;
    padding: 20px;
}

.slide-content h2 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.slide-content p {
    color: var(--accent-light);
    font-size: 1.2rem;
    margin-bottom: 0;
}

.carousel-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.7);
    color: var(--primary-color);
    border: none;
    font-size: 28px;
    padding: 12px 16px;
    cursor: pointer;
    border-radius: 4px;
    z-index: 100;
    transition: background-color 0.3s ease;
}

.carousel-control:hover {
    background-color: rgba(255, 255, 255, 0.9);
}

.carousel-control.prev {
    left: 20px;
}

.carousel-control.next {
    right: 20px;
}

.carousel-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 100;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.indicator:hover {
    background-color: rgba(255, 255, 255, 0.8);
}

.indicator.active {
    background-color: var(--accent-color);
    transform: scale(1.2);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
    color: var(--white);
    padding: 100px 20px;
    text-align: center;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-small {
    min-height: 350px;
    padding: 60px 20px;
}

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

.hero-subtitle {
    color: var(--accent-light);
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

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

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 30px;
    color: var(--accent-light);
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    padding: 14px 32px;
    border: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);
}

.btn-primary {
    background-color: var(--accent-color);
    color: var(--primary-dark);
    font-weight: 700;
}

.btn-primary:hover {
    background-color: var(--accent-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(232, 168, 82, 0.3);
}

.btn-primary:active {
    transform: translateY(0);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);
}

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

.btn-secondary:hover {
    background-color: #333333;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
}

.btn-secondary:active {
    transform: translateY(0);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);
}

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

.btn-primary:hover {
    background-color: var(--accent-light);
    transform: translateY(-2px);
    box-shadow: var(--box-shadow-lg);
}

.btn-secondary {
    background-color:#000000;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background-color: var(--white);
    color: var(--primary-color);
    transform: translateY(-2px);
}

.btn-large {
    padding: 16px 40px;
    font-size: 1.1rem;
}

.btn-small {
    padding: 8px 16px;
    font-size: 0.9rem;
}

/* Content Sections */
.content-section {
    padding: 70px 20px;
}

.content-section h2 {
    text-align: center;
    margin-bottom: 40px;
}

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

.section-intro {
    font-size: 1.1rem;
    color: var(--neutral-dark);
    margin-bottom: 40px;
}

/* About Section */
.about-section {
    padding: 80px 20px;
    background-color: var(--white);
}

.about-section .container {
    max-width: 900px;
}

.about-section p {
    font-size: 1.05rem;
    margin-bottom: 20px;
    color: var(--neutral-dark);
}

.stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.stat {
    text-align: center;
}

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

.stat p {
    font-size: 1.1rem;
    color: var(--neutral-dark);
    margin: 0;
}

/* Tournaments Section */
.tournaments-section {
    padding: 80px 20px;
    background-color: var(--white);
}

.tournaments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.tournament-card {
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.tournament-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.tournament-card:hover img {
    transform: scale(1.05);
}

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

.tournament-card .card-content {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.tournament-card h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

.tournament-card .season {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.tournament-card p {
    color: var(--neutral-dark);
    margin-bottom: 25px;
    line-height: 1.6;
    flex-grow: 1;
}

.tournament-card .btn {
    align-self: flex-start;
}

/* Benefits Section */
.why-join-section {
    padding: 80px 20px;
    background-color: var(--neutral-light);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.benefit-card {
    background: var(--white);
    padding: 35px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--box-shadow-lg);
    border-top: 4px solid var(--accent-color);
}

.benefit-card h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.benefit-card p {
    color: var(--neutral-dark);
    margin: 0;
    line-height: 1.6;
}

/* Standards Section */
.standards-section {
    padding: 80px 20px;
    background-color: var(--white);
}

.standards-section > .container > p {
    font-size: 1.05rem;
    margin-bottom: 40px;
}

.standards-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.standard-item {
    background: linear-gradient(90deg, var(--accent-color) 0%, var(--accent-light) 100%);
    color: var(--white);
    padding: 20px;
    border-radius: var(--border-radius);
    font-weight: 500;
    font-size: 0.95rem;
}

/* Registration Section */
.registration-section {
    padding: 80px 20px;
    background-color: var(--white);
}

.registration-section h2 {
    text-align: center;
}

.registration-section > .container > p {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 50px;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.form-button-group {
    display: flex;
    gap: 12px;
    justify-content: flex-start;
    margin-top: 30px;
    flex-wrap: wrap;
}

.registration-form {
    max-width: 700px;
    margin: 0 auto;
    background: var(--white);
    padding: 45px;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--neutral-medium);
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.95rem;
}

.form-group input,
    .form-group select,
    .form-group textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1.5px solid var(--neutral-medium);
    border-radius: var(--border-radius);
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    background-color: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(92, 42, 16, 0.1);
}

.form-group input[type="checkbox"] {
    width: auto;
    margin-right: 8px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

/* Mission & Vision Section */
.mission-vision-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.mission-card {
    background: var(--white);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.mission-card h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

/* Values Section */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.value-card {
    background: var(--white);
    padding: 35px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    border-top: 4px solid var(--accent-color);
    transition: all 0.3s ease;
}

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

.value-card h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

/* Timeline */
.timeline {
    margin-top: 40px;
}

.timeline-item {
    display: grid;
    grid-template-columns: 150px 1fr;
    gap: 30px;
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 2px solid var(--neutral-medium);
}

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

.timeline-year {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent-color);
}

.timeline-content h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

.timeline-content p {
    color: var(--neutral-dark);
    margin: 0;
}

/* Impact Stats */
.impact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.impact-stat {
    text-align: center;
    padding: 30px;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

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

.impact-stat p {
    color: var(--neutral-dark);
    font-size: 0.95rem;
    margin: 0;
}

/* League Structure */
.league-structure-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.structure-card {
    background: var(--white);
    padding: 35px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    border-left: 4px solid var(--primary-color);
}

.structure-card h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.structure-card p {
    margin-bottom: 20px;
}

.structure-card ul {
    list-style: none;
    padding-left: 0;
}

.structure-card li {
    padding-left: 20px;
    margin-bottom: 8px;
    position: relative;
    color: var(--neutral-dark);
}

.structure-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

/* Rules Section */
.rules-section {
    margin-bottom: 40px;
    padding: 30px;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.rules-section h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.rules-section p {
    margin-bottom: 0;
}

.rules-list {
    display: grid;
    gap: 12px;
    margin-top: 15px;
}

.rule-item {
    padding: 12px 20px;
    background: var(--neutral-light);
    border-left: 4px solid var(--accent-color);
    color: var(--neutral-dark);
    border-radius: 4px;
}

/* Steps Section */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.step-card {
    background: var(--white);
    padding: 35px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    text-align: center;
    position: relative;
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: var(--accent-color);
    color: var(--white);
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.step-card h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.step-card p {
    color: var(--neutral-dark);
    margin: 0;
    font-size: 0.95rem;
}

/* Table Styles */
.table-responsive {
    overflow-x: auto;
    margin-top: 30px;
}

.schedule-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.schedule-table thead {
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--white);
}

.schedule-table th {
    padding: 16px;
    text-align: left;
    font-weight: 600;
}

.schedule-table td {
    padding: 16px;
    border-bottom: 1px solid var(--neutral-medium);
}

.schedule-table tbody tr:hover {
    background-color: var(--neutral-light);
}

/* Section with Image */
.section-with-image {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.section-text {
    flex: 1;
}

.section-image {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow-lg);
    object-fit: cover;
}

/* Values Section Wrapper */
.values-section-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: flex-start;
    margin-bottom: 40px;
}

.values-intro {
    flex: 1;
}

.values-image {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow-lg);
    object-fit: cover;
}

/* History Header */
.history-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 40px;
}

.history-image {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow-lg);
    object-fit: cover;
}

/* Impact Header */
.impact-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 40px;
}

.impact-header-image {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow-lg);
    object-fit: cover;
}

/* Eligibility Section */
.eligibility-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.eligibility-card {
    background: var(--white);
    padding: 35px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.eligibility-card h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.eligibility-card p {
    color: var(--neutral-dark);
    margin: 0;
    font-size: 0.95rem;
}

/* CTA Buttons */
.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 40px;
}

/* Footer */
.footer {
    background-color: var(--primary-color);
    color: var(--white);
    text-align: center;
    padding: 40px 20px;
    margin-top: 60px;
}

.footer p {
    margin-bottom: 10px;
    font-size: 0.95rem;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    h3 {
        font-size: 1.3rem;
    }

    .navbar {
        padding: 15px 0;
    }

    .nav-container {
        gap: 15px;
        flex-wrap: wrap;
    }

    .nav-links {
        gap: 20px;
        order: 3;
        width: 100%;
        justify-content: center;
    }

    .social-icons {
        gap: 10px;
    }

    .logo-image {
        height: 30px;
    }

    .logo-text {
        font-size: 1rem;
    }

    .carousel-section {
        height: 400px;
    }

    .slide-content h2 {
        font-size: 1.8rem;
    }

    .slide-content p {
        font-size: 1rem;
    }

    .carousel-control {
        padding: 10px 14px;
        font-size: 20px;
    }

    .hero {
        min-height: 400px;
        padding: 60px 20px;
    }

    .hero-small {
        min-height: 300px;
        padding: 50px 20px;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .nav-links {
        gap: 20px;
    }

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

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .btn {
        padding: 12px 20px;
        font-size: 0.95rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .registration-form {
        padding: 30px 20px;
    }

    .timeline-item {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .timeline-year {
        font-size: 1.3rem;
        margin-bottom: 10px;
    }

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

    .content-section {
        padding: 60px 20px;
    }

    .section-with-image {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .values-section-wrapper {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .history-header {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .impact-header {
        grid-template-columns: 1fr;
        gap: 25px;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .hero {
        min-height: 300px;
        padding: 40px 20px;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .nav-links {
        gap: 15px;
    }

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

    .benefits-grid,
    .tournaments-grid,
    .values-grid,
    .league-structure-grid,
    .eligibility-grid,
    .impact-grid {
        grid-template-columns: 1fr;
    }

    .mission-vision-grid {
        grid-template-columns: 1fr;
    }

    .step-card {
        padding: 25px;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-buttons .btn {
        width: 100%;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn {
        width: 100%;
    }
}
