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

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

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

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Fjalla One', sans-serif;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 1rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 500;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
}

.btn-primary {
    background-color: #2c5aa0;
    color: white;
    border-color: #2c5aa0;
}

.btn-primary:hover {
    background-color: #1e3f7a;
    border-color: #1e3f7a;
}

.btn-secondary {
    background-color: transparent;
    color: #2c5aa0;
    border-color: #2c5aa0;
}

.btn-secondary:hover {
    background-color: #2c5aa0;
    color: white;
}

.btn-outline {
    background-color: transparent;
    color: #2c5aa0;
    border-color: #2c5aa0;
}

.btn-outline:hover {
    background-color: #2c5aa0;
    color: white;
}

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

.header-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
    flex-wrap: wrap;
    gap: 20px;
}

.header-left {
    flex: 1;
    min-width: 200px;
}

.rating-widget {
    display: flex;
    align-items: center;
    gap: 10px;
}

.stars {
    color: #ffd700;
    font-size: 1.2rem;
}

.rating-text {
    font-weight: 500;
    color: #2c5aa0;
}

.header-center {
    flex: 2;
    text-align: center;
}

.logo img {
    max-width: 300px;
    height: auto;
}

.tagline {
    font-family: 'Fjalla One', sans-serif;
    font-style: italic;
    color: #2c5aa0;
    margin-top: 10px;
    font-size: 1.1rem;
}

.header-right {
    flex: 1;
    text-align: right;
    min-width: 200px;
}

.contact-info {
    margin-bottom: 15px;
}

.phone a {
    color: #2c5aa0;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
}

.phone a:hover {
    text-decoration: underline;
}

.address {
    color: #666;
    font-size: 0.9rem;
}

/* Navigation */
.main-nav {
    background-color: #2c5aa0;
    padding: 0;
}

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

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

.nav-list>li>a {
    display: block;
    padding: 15px 20px;
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.nav-list>li>a:hover {
    background-color: #153a5a;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    list-style: none;
    z-index: 1001;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li a {
    display: block;
    padding: 12px 20px;
    color: #333;
    text-decoration: none;
    border-bottom: 1px solid #eee;
    transition: background-color 0.3s ease;
}

.dropdown-menu li a:hover {
    background-color: #f5f5f5;
    color: #1d4e78;
}

/* Hero Section */
.hero {
    height: 80vh;
    min-height: 500px;
    position: relative;
    display: flex;
    align-items: center;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.hero {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}



.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #ffffff;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 4.5rem;
    font-weight: 300;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #ffffff;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.hero-subtitle {
    font-size: 1.3rem;
    font-weight: 400;
    margin-bottom: 30px;
    line-height: 1.6;
    color: #ffffff;
    letter-spacing: 1px;
}

.hero-contact {
    margin-bottom: 30px;
}

.hero-phone {
    font-size: 2.2rem;
    font-weight: 300;
    margin-bottom: 10px;
    color: #ffffff;
    letter-spacing: 1px;
}

.hero-hours {
    font-size: 1.5rem;
    font-weight: 400;
    color: #ffffff;
    letter-spacing: 1px;
}

.hero-contact {
    text-align: center;
    margin-bottom: 30px;
}



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

/* Summer Camp Banner */
.summer-camp-banner {
    background: linear-gradient(135deg, #e67e22, #f39c12);
    color: white;
    padding: 40px 0;
    text-align: center;
}

.banner-content h2 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.banner-content p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

/* Main Content */
.main-content {
    padding: 60px 0;
}

/* Programs Section */
.programs-section {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.programs-section h2 {
    text-align: center;
    margin-bottom: 40px;
    color: #2c5aa0;
}

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

.program-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.program-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.program-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.program-card h3 {
    padding: 20px 20px 10px;
    color: #2c5aa0;
}

.program-card p {
    padding: 0 20px 20px;
    color: #666;
}

.program-card .btn {
    margin: 0 20px 20px;
}

/* About Section */
.about-section {
    padding: 60px 0;
}

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

.about-text h2 {
    color: #2c5aa0;
    margin-bottom: 20px;
}

.about-text p {
    margin-bottom: 20px;
    color: #666;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Locations Section */
.locations-section {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.locations-section h2 {
    text-align: center;
    margin-bottom: 40px;
    color: #2c5aa0;
}

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

.location-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.location-card h3 {
    color: #2c5aa0;
    margin-bottom: 15px;
}

.location-card p {
    margin-bottom: 15px;
    color: #666;
}

.phone-link {
    display: block;
    color: #2c5aa0;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.phone-link:hover {
    text-decoration: underline;
}

/* CTA Section */
.cta-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #2c5aa0, #4a7c59);
    color: white;
    text-align: center;
}

.cta-content h2 {
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

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

.cta-section .btn-primary {
    background-color: white;
    color: #1d4e78;
    border-color: white;
}

.cta-section .btn-primary:hover {
    background-color: #f8f9fa;
    border-color: #f8f9fa;
}

.cta-section .btn-secondary {
    background-color: transparent;
    color: white;
    border-color: white;
}

.cta-section .btn-secondary:hover {
    background-color: white;
    color: #1d4e78;
}

/* Footer */
.footer {
    background-color: #333;
    color: white;
    padding: 40px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.footer-section h3 {
    margin-bottom: 15px;
    color: #1d4e78;
}

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

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

.footer-section a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid #555;
    padding-top: 20px;
    text-align: center;
    color: #ccc;
}

/* Mobile Navigation Toggle Button */
.mobile-nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 25px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1002;
}

.mobile-nav-toggle span {
    width: 100%;
    height: 3px;
    background-color: #2c5aa0;
    border-radius: 3px;
    transition: all 0.3s ease;
    display: block;
}

.mobile-nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-top {
        flex-direction: column;
        text-align: center;
        padding: 10px 0;
    }

    .header-left,
    .header-right {
        flex: none;
        width: 100%;
    }

    .header-right {
        text-align: center;
        display: none;
    }

    .header-left {
        display: none;
    }

    .logo img {
        max-width: 200px;
        height: auto;
    }

    .tagline {
        font-size: 0.9rem;
        margin-top: 5px;
    }

    /* Mobile Navigation Styles */
    .mobile-nav-toggle {
        display: flex !important;
        /* Force display for testing */
        position: absolute;
        top: 20px;
        right: 20px;
        z-index: 1003;
    }

    /* Override base navigation styles for mobile */
    .main-nav .nav-list {
        display: none !important;
        flex-direction: column !important;
        justify-content: flex-start !important;
        align-items: stretch !important;
        position: fixed !important;
        top: 80px !important;
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        max-height: 80vh !important;
        background-color: #2c5aa0 !important;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2) !important;
        z-index: 1001 !important;
        padding: 0 !important;
        margin: 0 !important;
        box-sizing: border-box !important;
        overflow-y: auto !important;
        -webkit-overflow-scrolling: touch !important;
        list-style: none !important;
        /* Safari scrolling fixes */
        -webkit-transform: translateZ(0) !important;
        transform: translateZ(0) !important;
        /* Ensure proper touch scrolling */
        touch-action: pan-y !important;
    }

    /* Chrome-specific mobile menu fixes */
    @supports (-webkit-appearance: none) {
        .main-nav .nav-list {
            display: none !important;
        }

        .main-nav .nav-list.active {
            display: flex !important;
        }
    }

    /* Safari-specific mobile menu fixes */
    @supports (-webkit-touch-callout: none) {
        .main-nav .nav-list.active {
            max-height: 85vh !important;
            overflow-y: scroll !important;
            -webkit-overflow-scrolling: touch !important;
            padding-bottom: 30px !important;
            /* Safari mobile specific scrolling */
            -webkit-transform: translate3d(0, 0, 0) !important;
            transform: translate3d(0, 0, 0) !important;
            /* Force Safari to create a scrollable container */
            position: fixed !important;
            z-index: 1001 !important;
            /* Ensure proper scrolling context */
            -webkit-backface-visibility: hidden !important;
            backface-visibility: hidden !important;
            /* Force hardware acceleration */
            -webkit-perspective: 1000px !important;
            perspective: 1000px !important;
            /* Alternative Safari positioning */
            top: 80px !important;
            left: 0 !important;
            right: 0 !important;
            bottom: 0 !important;
            /* Force scrollable area */
            height: calc(100vh - 80px) !important;
            max-height: none !important;
            /* JavaScript scrolling support */
            overflow-y: scroll !important;
            -webkit-overflow-scrolling: touch !important;
            /* Ensure proper touch handling */
            touch-action: pan-y !important;
        }

        .main-nav .nav-list .dropdown-menu {
            max-height: none !important;
            overflow: visible !important;
        }

        /* Force Safari to allow scrolling within dropdowns */
        .main-nav .nav-list .dropdown-menu li {
            overflow: visible !important;
            white-space: normal !important;
        }
    }

    /* Force mobile menu display when active */
    .main-nav .nav-list.active {
        display: flex !important;
        flex-direction: column !important;
        justify-content: flex-start !important;
        align-items: stretch !important;
        background-color: #2c5aa0 !important;
        position: fixed !important;
        top: 80px !important;
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        max-height: 85vh !important;
        /* Safari-friendly height */
        z-index: 1001 !important;
        overflow-y: auto !important;
        /* Enable scrolling */
        -webkit-overflow-scrolling: touch !important;
        /* Smooth scrolling for Safari */
        padding-bottom: 20px !important;
        /* Add bottom padding for better scrolling */
        /* Force Safari to enable scrolling */
        -webkit-transform: translate3d(0, 0, 0) !important;
        transform: translate3d(0, 0, 0) !important;
        /* Ensure proper scrolling behavior */
        scroll-behavior: smooth !important;
        /* Safari mobile scrolling fix */
        -webkit-overflow-scrolling: touch !important;
        overflow-scrolling: touch !important;
    }

    /* Force override of base flex properties */
    .main-nav .nav-list,
    .main-nav .nav-list>li,
    .main-nav .nav-list>li>a {
        flex: none !important;
        flex-wrap: nowrap !important;
        justify-content: flex-start !important;
        align-items: stretch !important;
    }

    .main-nav {
        position: relative;
    }

    /* Mobile menu close button */
    .mobile-menu-close {
        position: absolute;
        top: 15px;
        right: 15px;
        background: none;
        border: none;
        color: white;
        font-size: 24px;
        cursor: pointer;
        z-index: 1002;
        padding: 10px;
    }

    .nav-list>li {
        border-bottom: 1px solid #1d4e78;
        width: 100% !important;
        display: block !important;
        flex: none !important;
        flex-shrink: 0 !important;
        min-height: 44px !important;
        max-height: none !important;
    }

    .nav-list>li>a {
        padding: 15px 20px;
        border-bottom: none;
        min-height: 44px;
        display: flex;
        align-items: center;
        font-size: 1.1rem;
        font-weight: 500;
        color: white !important;
        background-color: transparent !important;
        width: 100%;
    }

    /* Better touch targets for mobile */
    .nav-list a {
        min-height: 44px;
        display: flex;
        align-items: center;
        width: 100%;
        box-sizing: border-box;
    }

    .main-nav .nav-list .dropdown-menu {
        position: static !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        box-shadow: none !important;
        background-color: #1d4e78 !important;
        max-height: none !important;
        overflow: visible !important;
        padding: 0 !important;
        margin: 0 !important;
        width: 100% !important;
        display: block !important;
        top: auto !important;
        left: auto !important;
        min-width: auto !important;
        /* Prevent dropdown from taking up too much space */
        flex-shrink: 0 !important;
        /* Safari scrolling fix */
        -webkit-transform: translateZ(0) !important;
        transform: translateZ(0) !important;
    }

    .main-nav .nav-list .dropdown-menu li a {
        color: white !important;
        border-bottom: 1px solid #2a6aa0 !important;
        padding: 12px 20px 12px 40px !important;
        min-height: 40px !important;
        font-size: 0.95rem !important;
        background-color: #1d4e78 !important;
        transition: background-color 0.2s ease !important;
        display: flex !important;
        align-items: center !important;
        width: 100% !important;
    }

    .main-nav .nav-list .dropdown-menu li a:hover,
    .main-nav .nav-list .dropdown-menu li a:active {
        background-color: #2a6aa0 !important;
    }

    /* Ensure mobile menu is scrollable */
    .main-nav .nav-list.active {
        display: flex !important;
        max-height: 80vh;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: thin;
        scrollbar-color: #2a6aa0 #1d4e78;
        scroll-behavior: smooth;
    }

    /* Ensure mobile menu content is properly contained */
    .nav-list>li {
        width: 100%;
        border-bottom: 1px solid #1d4e78;
    }

    .nav-list .dropdown-menu {
        width: 100%;
        background-color: #1d4e78;
    }

    .nav-list .dropdown-menu li {
        width: 100%;
        border-bottom: 1px solid #2a6aa0;
    }

    /* Add some padding to the bottom for better scrolling */
    .nav-list::after {
        content: '';
        height: 20px;
        flex-shrink: 0;
    }

    /* Add visual scroll indicators */
    .nav-list::before {
        content: '';
        position: sticky;
        top: 0;
        height: 20px;
        background: linear-gradient(to bottom, #2c5aa0 0%, transparent 100%);
        z-index: 1;
        pointer-events: none;
        flex-shrink: 0;
    }

    .nav-list::after {
        content: '';
        position: sticky;
        bottom: 0;
        height: 20px;
        background: linear-gradient(to top, #2c5aa0 0%, transparent 100%);
        z-index: 1;
        pointer-events: none;
        flex-shrink: 0;
    }

    /* Hide scrollbar but keep functionality */
    .main-nav .nav-list.active::-webkit-scrollbar {
        width: 6px;
    }

    .main-nav .nav-list.active::-webkit-scrollbar-track {
        background: #1d4e78;
    }

    .main-nav .nav-list.active::-webkit-scrollbar-thumb {
        background: #2a6aa0;
        border-radius: 3px;
    }

    .main-nav .nav-list.active::-webkit-scrollbar-thumb:hover {
        background: #3a7ab0;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1.2rem;
    }

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

    .about-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

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

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

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

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

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .header-top {
        padding: 5px 0;
    }

    .header-right {
        display: none;
    }

    .header-left {
        display: none;
    }

    .logo img {
        max-width: 150px;
        height: auto;
    }

    .tagline {
        font-size: 0.8rem;
        margin-top: 3px;
    }

    /* Additional mobile navigation improvements */
    .mobile-nav-toggle {
        top: 15px;
        right: 15px;
    }

    .nav-list {
        padding-top: 0;
    }

    .nav-list>li>a {
        padding: 15px 20px;
        font-size: 1.1rem;
    }

    .dropdown-menu li a {
        padding: 12px 20px 12px 40px;
        font-size: 1rem;
    }

    /* Ensure proper spacing between menu sections */
    .nav-list>li:not(:last-child) {
        margin-bottom: 2px;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

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

    .banner-content h2 {
        font-size: 1.5rem;
    }

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

    .program-card,
    .location-card {
        padding: 20px;
    }
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.mb-1 {
    margin-bottom: 0.5rem;
}

.mb-2 {
    margin-bottom: 1rem;
}

.mb-3 {
    margin-bottom: 1.5rem;
}

.mb-4 {
    margin-bottom: 2rem;
}

.mt-1 {
    margin-top: 0.5rem;
}

.mt-2 {
    margin-top: 1rem;
}

.mt-3 {
    margin-top: 1.5rem;
}

.mt-4 {
    margin-top: 2rem;
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus styles for accessibility */
a:focus,
button:focus,
input:focus,
textarea:focus,
select:focus {
    outline: 2px solid #1d4e78;
    outline-offset: 2px;
}

/* Skip to main content link for screen readers */
.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: #1d4e78;
    color: white;
    padding: 8px;
    text-decoration: none;
    border-radius: 4px;
    z-index: 10000;
}

.skip-link:focus {
    top: 6px;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #2c5aa0, #4a7c59);
    color: white;
    padding: 60px 0;
    text-align: center;
}

.page-header h1 {
    margin-bottom: 10px;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Contact Page Styles */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-bottom: 60px;
}

.contact-form-section,
.contact-info-section {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-form-section h2,
.contact-info-section h2 {
    color: #1d4e78;
    margin-bottom: 20px;
}

.contact-form-section p {
    color: #666;
    margin-bottom: 30px;
}

/* Form Styles */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.form-group label {
    font-weight: 500;
    margin-bottom: 8px;
    color: #333;
}

.form-group input,
.form-group textarea {
    padding: 12px;
    border: 2px solid #e0e0e0;
    border-radius: 5px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #1d4e78;
}

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

/* Contact Methods */
.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-method {
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #1d4e78;
}

.contact-method h3 {
    color: #1d4e78;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.contact-method p {
    margin-bottom: 10px;
    color: #666;
}

.contact-method a {
    color: #1d4e78;
    text-decoration: none;
    font-weight: 500;
}

.contact-method a:hover {
    text-decoration: underline;
}

/* Business Hours */
.business-hours {
    margin-bottom: 60px;
}

.business-hours h2 {
    text-align: center;
    color: #1d4e78;
    margin-bottom: 40px;
}

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

.hours-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.hours-card h3 {
    color: #1d4e78;
    margin-bottom: 20px;
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

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

.day {
    font-weight: 500;
    color: #333;
}

.time {
    color: #666;
}

/* Map Section */
.map-section {
    margin-bottom: 60px;
}

.map-section h2 {
    text-align: center;
    color: #1d4e78;
    margin-bottom: 30px;
}

.maps-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.map-container {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.map-container h3 {
    color: #2c5aa0;
    margin-bottom: 10px;
}

.map-container p {
    margin-bottom: 15px;
}

.map-container iframe {
    border-radius: 8px;
    margin-bottom: 15px;
    width: 100%;
    height: 300px;
}

.map-container a {
    color: #2c5aa0;
    text-decoration: none;
    font-weight: 500;
}

.map-container a:hover {
    text-decoration: underline;
}

/* Responsive design for maps */
@media (max-width: 768px) {
    .maps-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .map-container {
        padding: 15px;
    }
}

/* Responsive Design for Contact Page */
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .contact-form-section,
    .contact-info-section {
        padding: 30px 20px;
    }

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

    .hours-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
}

/* About Page Styles */
.mission-section {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.mission-section h2 {
    text-align: center;
    color: #1d4e78;
    margin-bottom: 40px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.value-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
}

.value-card h3 {
    color: #1d4e78;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.value-card p {
    color: #666;
    line-height: 1.6;
}

/* Accreditation Section */
.accreditation-section {
    padding: 60px 0;
}

.accreditation-section h2 {
    text-align: center;
    color: #1d4e78;
    margin-bottom: 40px;
}

.accreditation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.accreditation-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.accreditation-card:hover {
    transform: translateY(-5px);
}

.accreditation-card img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 20px;
}

.accreditation-card h3 {
    color: #1d4e78;
    margin-bottom: 15px;
}

.accreditation-card p {
    color: #666;
    line-height: 1.6;
}

/* Testimonial Section */
.testimonial-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #1d4e78, #2a6aa0);
    color: white;
}

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

.testimonial-content blockquote {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-content cite {
    font-size: 1rem;
    opacity: 0.9;
    font-weight: 500;
}

/* Programs Overview */
.programs-overview {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.programs-overview h2 {
    text-align: center;
    color: #1d4e78;
    margin-bottom: 20px;
}

.programs-overview>p {
    text-align: center;
    color: #666;
    margin-bottom: 40px;
    font-size: 1.1rem;
}

.programs-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.program-item {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #1d4e78;
}

.program-item h3 {
    color: #1d4e78;
    margin-bottom: 15px;
}

.program-item p {
    color: #666;
    line-height: 1.6;
}

/* Responsive Design for About Page */
@media (max-width: 768px) {

    .values-grid,
    .accreditation-grid,
    .programs-list {
        grid-template-columns: 1fr;
    }

    .value-card,
    .accreditation-card,
    .program-item {
        padding: 20px;
    }

    .testimonial-content blockquote {
        font-size: 1rem;
    }
}

/* Program Page Styles */
.program-overview {
    padding: 60px 0;
}

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

.program-text h2 {
    color: #1d4e78;
    margin-bottom: 20px;
}

.program-text p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}

.program-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Age Groups */
.age-groups {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.age-groups h2 {
    text-align: center;
    color: #1d4e78;
    margin-bottom: 40px;
}

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

.age-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #1d4e78;
}

.age-card h3 {
    color: #1d4e78;
    margin-bottom: 15px;
}

.age-card p {
    color: #666;
    margin-bottom: 15px;
}

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

.age-card li {
    padding: 5px 0;
    color: #666;
    position: relative;
    padding-left: 20px;
}

.age-card li:before {
    content: "✓";
    color: #1d4e78;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Daily Schedule */
.daily-schedule {
    padding: 60px 0;
}

.daily-schedule h2 {
    text-align: center;
    color: #1d4e78;
    margin-bottom: 20px;
}

.daily-schedule>p {
    text-align: center;
    color: #666;
    margin-bottom: 40px;
}

.schedule-grid {
    max-width: 800px;
    margin: 0 auto;
}

.schedule-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: white;
    margin-bottom: 10px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #1d4e78;
}

.time {
    font-weight: 500;
    color: #1d4e78;
    min-width: 150px;
}

.activity {
    color: #666;
    flex: 1;
    margin-left: 20px;
}

/* Features Section */
.features-section {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.features-section h2 {
    text-align: center;
    color: #1d4e78;
    margin-bottom: 40px;
}

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

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

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-card h3 {
    color: #1d4e78;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.feature-card p {
    color: #666;
    line-height: 1.6;
}

/* Enrollment Section */
.enrollment-section {
    padding: 60px 0;
}

.enrollment-section h2 {
    text-align: center;
    color: #1d4e78;
    margin-bottom: 40px;
}

.enrollment-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.enrollment-info h3,
.enrollment-steps h3 {
    color: #1d4e78;
    margin-bottom: 20px;
}

.enrollment-info p,
.enrollment-info ul {
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

.enrollment-info ul {
    list-style: none;
    padding: 0;
}

.enrollment-info li {
    padding: 5px 0;
    position: relative;
    padding-left: 20px;
}

.enrollment-info li:before {
    content: "•";
    color: #1d4e78;
    position: absolute;
    left: 0;
}

/* Enrollment Steps */
.step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.step-number {
    background: #1d4e78;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-right: 20px;
    flex-shrink: 0;
}

.step-content h4 {
    color: #1d4e78;
    margin-bottom: 10px;
}

.step-content p {
    color: #666;
    line-height: 1.6;
}

/* Responsive Design for Program Pages */
@media (max-width: 768px) {
    .program-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .age-grid,
    .features-grid {
        grid-template-columns: 1fr;
    }

    .enrollment-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .schedule-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .time {
        min-width: auto;
    }

    .activity {
        margin-left: 0;
    }
}

/* Curriculum Section */
.curriculum-section {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.curriculum-section h2 {
    text-align: center;
    color: #1d4e78;
    margin-bottom: 40px;
}

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

.curriculum-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #1d4e78;
}

.curriculum-card h3 {
    color: #1d4e78;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.curriculum-card p {
    color: #666;
    margin-bottom: 15px;
}

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

.curriculum-card li {
    padding: 5px 0;
    color: #666;
    position: relative;
    padding-left: 20px;
}

.curriculum-card li:before {
    content: "✓";
    color: #1d4e78;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Social Development */
.social-development {
    padding: 60px 0;
}

.social-development h2 {
    text-align: center;
    color: #1d4e78;
    margin-bottom: 20px;
}

.social-development>p {
    text-align: center;
    color: #666;
    margin-bottom: 40px;
    font-size: 1.1rem;
}

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

.development-item {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.development-item:hover {
    transform: translateY(-5px);
}

.development-item h3 {
    color: #1d4e78;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.development-item p {
    color: #666;
    line-height: 1.6;
}

/* Assessment Section */
.assessment-section {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.assessment-section h2 {
    text-align: center;
    color: #1d4e78;
    margin-bottom: 40px;
}

.assessment-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.assessment-info h3,
.assessment-benefits h3 {
    color: #1d4e78;
    margin-bottom: 20px;
}

.assessment-info p,
.assessment-info ul {
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

.assessment-info ul {
    list-style: none;
    padding: 0;
}

.assessment-info li {
    padding: 5px 0;
    position: relative;
    padding-left: 20px;
}

.assessment-info li:before {
    content: "•";
    color: #1d4e78;
    position: absolute;
    left: 0;
}

/* Assessment Benefits */
.benefit-item {
    background: white;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.benefit-item h4 {
    color: #1d4e78;
    margin-bottom: 10px;
}

.benefit-item p {
    color: #666;
    line-height: 1.6;
}

/* Responsive Design for Additional Sections */
@media (max-width: 768px) {

    .curriculum-grid,
    .development-grid {
        grid-template-columns: 1fr;
    }

    .assessment-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* Location Page Styles */
.location-overview {
    padding: 60px 0;
}

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

.location-text h2 {
    color: #1d4e78;
    margin-bottom: 20px;
}

.location-text p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}

.location-highlights {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 30px;
}

.highlight {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #1d4e78;
}

.highlight-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.location-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Contact & Hours */
.contact-hours {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.contact-hours-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-card,
.hours-card {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-card h3,
.hours-card h3 {
    color: #1d4e78;
    margin-bottom: 30px;
    text-align: center;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

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

.contact-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 5px;
}

.contact-text {
    color: #666;
    line-height: 1.6;
}

.contact-text a {
    color: #1d4e78;
    text-decoration: none;
    font-weight: 500;
}

.contact-text a:hover {
    text-decoration: underline;
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 20px;
}

.hours-note {
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #1d4e78;
}

.hours-note p {
    color: #666;
    margin: 0;
    font-size: 0.9rem;
}

/* Map Section */
.map-section {
    padding: 60px 0;
}

.map-section h2 {
    text-align: center;
    margin-bottom: 40px;
    color: #1d4e78;
}

.map-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Programs Offered */
.programs-offered {
    padding: 60px 0;
}

.programs-offered h2 {
    text-align: center;
    color: #1d4e78;
    margin-bottom: 20px;
}

.programs-offered>p {
    text-align: center;
    color: #666;
    margin-bottom: 40px;
    font-size: 1.1rem;
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.program-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #1d4e78;
    transition: transform 0.3s ease;
}

.program-card:hover {
    transform: translateY(-5px);
}

.program-card h3 {
    color: #1d4e78;
    margin-bottom: 15px;
}

.program-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.program-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
}

.program-card li {
    padding: 5px 0;
    color: #666;
    position: relative;
    padding-left: 20px;
}

.program-card li:before {
    content: "✓";
    color: #1d4e78;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.program-card .btn {
    width: 100%;
    text-align: center;
}

/* Facility Features */
.facility-features {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.facility-features h2 {
    text-align: center;
    color: #1d4e78;
    margin-bottom: 40px;
}

/* Directions Section */
.directions-section {
    padding: 60px 0;
}

.directions-section h2 {
    text-align: center;
    color: #1d4e78;
    margin-bottom: 40px;
}

.directions-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.directions-info h3 {
    color: #1d4e78;
    margin-bottom: 15px;
    margin-top: 30px;
}

.directions-info h3:first-child {
    margin-top: 0;
}

.directions-info p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Responsive Design for Location Pages */
@media (max-width: 768px) {
    .location-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .contact-hours-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

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

    .directions-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .contact-card,
    .hours-card {
        padding: 30px 20px;
    }
}

/* Program Features Section */
.program-features {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.program-features h2 {
    text-align: center;
    color: #1d4e78;
    margin-bottom: 40px;
}

/* Benefits Section */
.benefits-section {
    padding: 60px 0;
}

.benefits-section h2 {
    text-align: center;
    color: #1d4e78;
    margin-bottom: 40px;
}

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

/* Themes Section */
.themes-section {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.themes-section h2 {
    text-align: center;
    color: #1d4e78;
    margin-bottom: 40px;
}

.themes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.theme-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #2c5aa0;
    transition: transform 0.3s ease;
}

.theme-card:hover {
    transform: translateY(-5px);
}

.theme-card h3 {
    color: #2c5aa0;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.theme-card p {
    color: #666;
    margin-bottom: 15px;
    line-height: 1.6;
}

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

.theme-card li {
    padding: 5px 0;
    color: #666;
    position: relative;
    padding-left: 20px;
}

.theme-card li:before {
    content: "✓";
    color: #2c5aa0;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.theme-link {
    color: #2c5aa0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.theme-link:hover {
    color: #1e3f7a;
    text-decoration: underline;
}

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

/* Activities Section */
.activities-section {
    padding: 60px 0;
}

.activities-section h2 {
    text-align: center;
    color: #1d4e78;
    margin-bottom: 40px;
}

.activities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.activity-category {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.activity-category h3 {
    color: #1d4e78;
    margin-bottom: 20px;
}

.activity-category ul {
    list-style: none;
    padding: 0;
    text-align: left;
}

.activity-category li {
    padding: 8px 0;
    color: #666;
    position: relative;
    padding-left: 20px;
}

.activity-category li:before {
    content: "•";
    color: #1d4e78;
    position: absolute;
    left: 0;
}

/* Field Trips Section */
.field-trips-section {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.field-trips-section h2 {
    text-align: center;
    color: #1d4e78;
    margin-bottom: 20px;
}

.field-trips-section>p {
    text-align: center;
    color: #666;
    margin-bottom: 40px;
    font-size: 1.1rem;
}

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

.trip-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.trip-card:hover {
    transform: translateY(-5px);
}

.trip-card h3 {
    color: #1d4e78;
    margin-bottom: 15px;
}

.trip-card p {
    color: #666;
    line-height: 1.6;
}

/* Packages Section */
.packages-section {
    padding: 60px 0;
}

.packages-section h2 {
    text-align: center;
    color: #1d4e78;
    margin-bottom: 40px;
}

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

.package-card {
    background: white;
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
    position: relative;
}

.package-card.featured {
    border: 3px solid #1d4e78;
    transform: scale(1.05);
}

.package-card:hover {
    transform: translateY(-5px);
}

.package-card.featured:hover {
    transform: scale(1.05) translateY(-5px);
}

.package-card h3 {
    color: #1d4e78;
    margin-bottom: 10px;
    font-size: 1.5rem;
}

.package-price {
    font-size: 2.5rem;
    font-weight: bold;
    color: #1d4e78;
    margin-bottom: 10px;
}

.package-card p {
    color: #666;
    margin-bottom: 25px;
    font-style: italic;
}

.package-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
    text-align: left;
}

.package-card li {
    padding: 8px 0;
    color: #666;
    position: relative;
    padding-left: 25px;
}

.package-card li:before {
    content: "✓";
    color: #1d4e78;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Included Section */
.included-section {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.included-section h2 {
    text-align: center;
    color: #1d4e78;
    margin-bottom: 40px;
}

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

.included-item {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.included-item:hover {
    transform: translateY(-5px);
}

.included-item h3 {
    color: #1d4e78;
    margin-bottom: 15px;
}

.included-item p {
    color: #666;
    line-height: 1.6;
}

/* Services Section */
.services-section {
    padding: 60px 0;
}

.services-section h2 {
    text-align: center;
    color: #1d4e78;
    margin-bottom: 40px;
}

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

.service-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card h3 {
    color: #1d4e78;
    margin-bottom: 15px;
}

.service-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.service-price {
    font-size: 1.5rem;
    font-weight: bold;
    color: #1d4e78;
}

/* Planning Section */
.planning-section {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.planning-section h2 {
    text-align: center;
    color: #1d4e78;
    margin-bottom: 40px;
}

.planning-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.planning-info h3,
.planning-tips h3 {
    color: #1d4e78;
    margin-bottom: 30px;
}

.planning-step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.planning-step .step-number {
    background: #1d4e78;
    color: white;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-right: 20px;
    flex-shrink: 0;
}

.planning-step .step-content h4 {
    color: #1d4e78;
    margin-bottom: 8px;
}

.planning-step .step-content p {
    color: #666;
    line-height: 1.6;
}

.planning-tips ul {
    list-style: none;
    padding: 0;
}

.planning-tips li {
    padding: 10px 0;
    color: #666;
    line-height: 1.6;
    border-bottom: 1px solid #eee;
}

.planning-tips li:last-child {
    border-bottom: none;
}

/* Responsive Design for Additional Sections */
@media (max-width: 768px) {

    .themes-grid,
    .activities-grid,
    .trips-grid,
    .packages-grid,
    .included-grid,
    .services-grid {
        grid-template-columns: 1fr;
    }

    .planning-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .package-card.featured {
        transform: none;
    }

    .package-card.featured:hover {
        transform: translateY(-5px);
    }
}

/* Development Section */
.development-section {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.development-section h2 {
    text-align: center;
    color: #1d4e78;
    margin-bottom: 40px;
}

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

.development-item {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #1d4e78;
}

.development-item h3 {
    color: #1d4e78;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.development-item p {
    color: #666;
    margin-bottom: 15px;
    line-height: 1.6;
}

.development-item ul {
    list-style: none;
    padding: 0;
}

.development-item li {
    padding: 5px 0;
    color: #666;
    position: relative;
    padding-left: 20px;
}

.development-item li:before {
    content: "✓";
    color: #1d4e78;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Features Section */
.features-section {
    padding: 60px 0;
}

.features-section h2 {
    text-align: center;
    color: #1d4e78;
    margin-bottom: 40px;
}

/* Camp Types Section */
.camp-types {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.camp-types h2 {
    text-align: center;
    color: #1d4e78;
    margin-bottom: 40px;
}

.camp-types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.camp-type-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #1d4e78;
    transition: transform 0.3s ease;
}

.camp-type-card:hover {
    transform: translateY(-5px);
}

.camp-type-card h3 {
    color: #1d4e78;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.camp-type-card p {
    color: #666;
    margin-bottom: 15px;
    line-height: 1.6;
}

.camp-type-card ul {
    list-style: none;
    padding: 0;
}

.camp-type-card li {
    padding: 5px 0;
    color: #666;
    position: relative;
    padding-left: 20px;
}

.camp-type-card li:before {
    content: "✓";
    color: #1d4e78;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Event Details Section */
.event-details {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.event-details h2 {
    text-align: center;
    color: #1d4e78;
    margin-bottom: 40px;
}

.details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.detail-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.detail-card:hover {
    transform: translateY(-5px);
}

.detail-card h3 {
    color: #1d4e78;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.detail-card p {
    color: #666;
    line-height: 1.6;
}

/* Registration Section */
.registration-section {
    padding: 60px 0;
}

.registration-section h2 {
    text-align: center;
    color: #1d4e78;
    margin-bottom: 40px;
}

.registration-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.registration-info h3,
.registration-steps h3 {
    color: #1d4e78;
    margin-bottom: 30px;
}

.registration-info ul {
    list-style: none;
    padding: 0;
}

.registration-info li {
    padding: 10px 0;
    color: #666;
    line-height: 1.6;
    border-bottom: 1px solid #eee;
}

.registration-info li:last-child {
    border-bottom: none;
}

/* Upcoming Camps/Events Sections */
.upcoming-camps,
.upcoming-events {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.upcoming-camps h2,
.upcoming-events h2 {
    text-align: center;
    color: #1d4e78;
    margin-bottom: 40px;
}

.camps-grid,
.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.camp-event,
.event-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.camp-event:hover,
.event-card:hover {
    transform: translateY(-5px);
}

.camp-event h3,
.event-card h3 {
    color: #1d4e78;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.camp-event p,
.event-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

.camp-event a,
.event-card a {
    margin-top: 20px;
}

/* Responsive Design for New Sections */
@media (max-width: 768px) {

    .development-grid,
    .camp-types-grid,
    .details-grid,
    .camps-grid,
    .events-grid {
        grid-template-columns: 1fr;
    }

    .registration-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* Partnerships Section */
.partnerships-section {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.partnerships-section h2 {
    text-align: center;
    color: #1d4e78;
    margin-bottom: 40px;
}

.partnerships-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.partnership-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #1d4e78;
    transition: transform 0.3s ease;
}

.partnership-card:hover {
    transform: translateY(-5px);
}

.partnership-card h3 {
    color: #1d4e78;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.partnership-card p {
    color: #666;
    margin-bottom: 15px;
    line-height: 1.6;
}

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

.partnership-card li {
    padding: 5px 0;
    color: #666;
    position: relative;
    padding-left: 20px;
}

.partnership-card li:before {
    content: "✓";
    color: #1d4e78;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Community Section */
.community-section {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.community-section h2 {
    text-align: center;
    color: #1d4e78;
    margin-bottom: 40px;
}

.community-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.community-info h3,
.community-highlights h3 {
    color: #1d4e78;
    margin-bottom: 30px;
}

.community-info ul {
    list-style: none;
    padding: 0;
}

.community-info li {
    padding: 10px 0;
    color: #666;
    line-height: 1.6;
    border-bottom: 1px solid #eee;
}

.community-info li:last-child {
    border-bottom: none;
}

.highlight-item {
    margin-bottom: 25px;
}

.highlight-item h4 {
    color: #1d4e78;
    margin-bottom: 10px;
}

.highlight-item p {
    color: #666;
    line-height: 1.6;
}

/* Reviews Page Styles */
.overall-rating {
    padding: 60px 0;
    background-color: #f8f9fa;
}

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

.rating-summary h2 {
    text-align: center;
    color: #1d4e78;
    margin-bottom: 30px;
}

.rating-display {
    text-align: center;
}

.stars-large {
    font-size: 3rem;
    color: #ffd700;
    margin-bottom: 10px;
}

.rating-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: #1d4e78;
    margin-bottom: 5px;
}

.rating-count {
    color: #666;
    font-size: 1.1rem;
}

.rating-breakdown h3 {
    color: #1d4e78;
    margin-bottom: 30px;
}

.rating-bars {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.rating-bar {
    display: flex;
    align-items: center;
    gap: 15px;
}

.rating-bar .stars {
    min-width: 30px;
    color: #ffd700;
}

.bar-container {
    flex: 1;
    height: 20px;
    background-color: #e9ecef;
    border-radius: 10px;
    overflow: hidden;
}

.bar-fill {
    height: 100%;
    background-color: #1d4e78;
    transition: width 0.3s ease;
}

.percentage {
    min-width: 40px;
    color: #666;
    font-weight: bold;
}

/* Featured Reviews */
.featured-reviews {
    padding: 60px 0;
}

.featured-reviews h2 {
    text-align: center;
    color: #1d4e78;
    margin-bottom: 40px;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.review-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.review-card.featured {
    border: 3px solid #1d4e78;
    transform: scale(1.05);
}

.review-card:hover {
    transform: translateY(-5px);
}

.review-card.featured:hover {
    transform: scale(1.05) translateY(-5px);
}

.review-header {
    margin-bottom: 20px;
}

.reviewer-info h3 {
    color: #1d4e78;
    margin-bottom: 5px;
}

.reviewer-info .stars {
    color: #ffd700;
    margin-bottom: 5px;
}

.reviewer-info .date {
    color: #666;
    font-size: 0.9rem;
}

.review-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.review-tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.tag {
    background-color: #1d4e78;
    color: white;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
}

/* Recent Reviews */
.recent-reviews {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.recent-reviews h2 {
    text-align: center;
    color: #1d4e78;
    margin-bottom: 40px;
}

.reviews-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.review-item {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Review Categories */
.review-categories {
    padding: 60px 0;
}

.review-categories h2 {
    text-align: center;
    color: #1d4e78;
    margin-bottom: 40px;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.category-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.category-card:hover {
    transform: translateY(-5px);
}

.category-card h3 {
    color: #1d4e78;
    margin-bottom: 15px;
}

.category-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 10px;
}

.category-rating .stars {
    color: #ffd700;
}

.category-rating .rating {
    font-weight: bold;
    color: #1d4e78;
}

.category-card p {
    color: #666;
    margin-bottom: 20px;
}

/* Leave Review Section */
.leave-review {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.leave-review h2 {
    text-align: center;
    color: #1d4e78;
    margin-bottom: 20px;
}

.leave-review>p {
    text-align: center;
    color: #666;
    margin-bottom: 40px;
    font-size: 1.1rem;
}

.review-form {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Responsive Design for Additional Sections */
@media (max-width: 768px) {

    .rating-content,
    .community-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .reviews-grid,
    .categories-grid,
    .partnerships-grid {
        grid-template-columns: 1fr;
    }

    .review-card.featured {
        transform: none;
    }

    .review-card.featured:hover {
        transform: translateY(-5px);
    }

    .review-form {
        padding: 20px;
    }
}

/* History Page Styles */
.history-overview {
    padding: 60px 0;
}

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

.history-text h2 {
    color: #1d4e78;
    margin-bottom: 30px;
}

.history-text p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.history-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Timeline Section */
.timeline-section {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.timeline-section h2 {
    text-align: center;
    color: #1d4e78;
    margin-bottom: 40px;
}

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

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background-color: #1d4e78;
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
    position: relative;
}

.timeline-item:nth-child(odd) {
    flex-direction: row;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-date {
    background-color: #1d4e78;
    color: white;
    padding: 15px 25px;
    border-radius: 25px;
    font-weight: bold;
    font-size: 1.1rem;
    min-width: 120px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.timeline-content {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin: 0 30px;
    flex: 1;
}

.timeline-content h3 {
    color: #1d4e78;
    margin-bottom: 15px;
}

.timeline-content p {
    color: #666;
    line-height: 1.6;
}

/* Founding Story */
.founding-story {
    padding: 60px 0;
}

.founding-story h2 {
    text-align: center;
    color: #1d4e78;
    margin-bottom: 40px;
}

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

.story-text h3 {
    color: #1d4e78;
    margin-bottom: 20px;
}

.story-text p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.story-text ul {
    list-style: none;
    padding: 0;
}

.story-text li {
    padding: 10px 0;
    color: #666;
    line-height: 1.6;
    border-bottom: 1px solid #eee;
}

.story-text li:last-child {
    border-bottom: none;
}

.story-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Milestones Section */
.milestones-section {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.milestones-section h2 {
    text-align: center;
    color: #1d4e78;
    margin-bottom: 40px;
}

.milestones-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.milestone-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.milestone-card:hover {
    transform: translateY(-5px);
}

.milestone-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: #1d4e78;
    margin-bottom: 15px;
}

.milestone-card h3 {
    color: #1d4e78;
    margin-bottom: 15px;
}

.milestone-card p {
    color: #666;
    line-height: 1.6;
}

/* Community Impact */
.community-impact {
    padding: 60px 0;
}

.community-impact h2 {
    text-align: center;
    color: #1d4e78;
    margin-bottom: 40px;
}

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

.impact-text h3 {
    color: #1d4e78;
    margin-bottom: 20px;
}

.impact-text p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.impact-text h4 {
    color: #1d4e78;
    margin-bottom: 15px;
}

.impact-text ul {
    list-style: none;
    padding: 0;
}

.impact-text li {
    padding: 8px 0;
    color: #666;
    line-height: 1.6;
    position: relative;
    padding-left: 20px;
}

.impact-text li:before {
    content: "✓";
    color: #1d4e78;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.impact-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Evolution Section */
.evolution-section {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.evolution-section h2 {
    text-align: center;
    color: #1d4e78;
    margin-bottom: 40px;
}

.evolution-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.evolution-item {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #1d4e78;
}

.evolution-item h3 {
    color: #1d4e78;
    margin-bottom: 15px;
}

.evolution-item p {
    color: #666;
    line-height: 1.6;
}

/* Future Section */
.future-section {
    padding: 60px 0;
}

.future-section h2 {
    text-align: center;
    color: #1d4e78;
    margin-bottom: 40px;
}

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

.future-text h3 {
    color: #1d4e78;
    margin-bottom: 20px;
}

.future-text p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.future-text ul {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.future-text li {
    padding: 8px 0;
    color: #666;
    line-height: 1.6;
    position: relative;
    padding-left: 20px;
}

.future-text li:before {
    content: "→";
    color: #1d4e78;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Vision & Philosophy Page Styles */
.vision-overview {
    padding: 60px 0;
}

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

.vision-text h2 {
    color: #1d4e78;
    margin-bottom: 30px;
}

.vision-text p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.vision-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Philosophy Section */
.philosophy-section {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.philosophy-section h2 {
    text-align: center;
    color: #1d4e78;
    margin-bottom: 40px;
}

.philosophy-content {
    max-width: 1000px;
    margin: 0 auto;
}

.philosophy-intro {
    text-align: center;
    margin-bottom: 40px;
}

.philosophy-intro p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
}

.philosophy-pillars {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.pillar-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.pillar-card:hover {
    transform: translateY(-5px);
}

.pillar-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.pillar-card h3 {
    color: #1d4e78;
    margin-bottom: 15px;
}

.pillar-card p {
    color: #666;
    line-height: 1.6;
}

/* Educational Approach */
.educational-approach {
    padding: 60px 0;
}

.educational-approach h2 {
    text-align: center;
    color: #1d4e78;
    margin-bottom: 40px;
}

.approach-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.approach-item {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #1d4e78;
}

.approach-item h3 {
    color: #1d4e78;
    margin-bottom: 15px;
}

.approach-item p {
    color: #666;
    line-height: 1.6;
}

/* Core Values */
.core-values {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.core-values h2 {
    text-align: center;
    color: #1d4e78;
    margin-bottom: 40px;
}

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

.value-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
}

.value-card h3 {
    color: #1d4e78;
    margin-bottom: 15px;
}

.value-card p {
    color: #666;
    line-height: 1.6;
}

/* Developmental Goals */
.developmental-goals {
    padding: 60px 0;
}

.developmental-goals h2 {
    text-align: center;
    color: #1d4e78;
    margin-bottom: 40px;
}

.goals-content {
    max-width: 1200px;
    margin: 0 auto;
}

.goals-text {
    text-align: center;
    margin-bottom: 40px;
}

.goals-text h3 {
    color: #1d4e78;
    margin-bottom: 20px;
}

.goals-text p {
    color: #666;
    line-height: 1.6;
    font-size: 1.1rem;
}

.goals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.goal-category {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-top: 4px solid #1d4e78;
}

.goal-category h4 {
    color: #1d4e78;
    margin-bottom: 20px;
}

.goal-category ul {
    list-style: none;
    padding: 0;
}

.goal-category li {
    padding: 8px 0;
    color: #666;
    line-height: 1.6;
    position: relative;
    padding-left: 20px;
}

.goal-category li:before {
    content: "✓";
    color: #1d4e78;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Teaching Methods */
.teaching-methods {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.teaching-methods h2 {
    text-align: center;
    color: #1d4e78;
    margin-bottom: 40px;
}

.methods-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.method-item {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #1d4e78;
}

.method-item h3 {
    color: #1d4e78;
    margin-bottom: 15px;
}

.method-item p {
    color: #666;
    line-height: 1.6;
}

/* Quality Commitment */
.quality-commitment {
    padding: 60px 0;
}

.quality-commitment h2 {
    text-align: center;
    color: #1d4e78;
    margin-bottom: 40px;
}

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

.quality-text h3 {
    color: #1d4e78;
    margin-bottom: 20px;
}

.quality-text p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.quality-text ul {
    list-style: none;
    padding: 0;
}

.quality-text li {
    padding: 10px 0;
    color: #666;
    line-height: 1.6;
    border-bottom: 1px solid #eee;
}

.quality-text li:last-child {
    border-bottom: none;
}

.quality-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Tours Page Styles */
.tour-overview {
    padding: 60px 0;
}

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

.tour-text h2 {
    color: #1d4e78;
    margin-bottom: 30px;
}

.tour-text p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.tour-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Tour Benefits */
.tour-benefits {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.tour-benefits h2 {
    text-align: center;
    color: #1d4e78;
    margin-bottom: 40px;
}

/* Tour Expectations */
.tour-expectations {
    padding: 60px 0;
}

.tour-expectations h2 {
    text-align: center;
    color: #1d4e78;
    margin-bottom: 40px;
}

.expectations-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.expectation-item {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #1d4e78;
}

.expectation-item h3 {
    color: #1d4e78;
    margin-bottom: 15px;
}

.expectation-item p {
    color: #666;
    line-height: 1.6;
}

/* Tour Schedule */
.tour-schedule {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.tour-schedule h2 {
    text-align: center;
    color: #1d4e78;
    margin-bottom: 40px;
}

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

.schedule-info h3 {
    color: #1d4e78;
    margin-bottom: 20px;
}

.schedule-info p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.schedule-times {
    margin-bottom: 20px;
}

.time-slot {
    margin-bottom: 20px;
}

.time-slot h4 {
    color: #1d4e78;
    margin-bottom: 10px;
}

.time-slot p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 5px;
}

.schedule-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Tour Form */
.tour-form-section {
    padding: 60px 0;
}

.tour-form-section h2 {
    text-align: center;
    color: #1d4e78;
    margin-bottom: 20px;
}

.tour-form-section>p {
    text-align: center;
    color: #666;
    margin-bottom: 40px;
    font-size: 1.1rem;
}

.tour-form {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Tour Tips */
.tour-tips {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.tour-tips h2 {
    text-align: center;
    color: #1d4e78;
    margin-bottom: 40px;
}

.tips-content {
    max-width: 1200px;
    margin: 0 auto;
}

.tips-text {
    text-align: center;
    margin-bottom: 40px;
}

.tips-text h3 {
    color: #1d4e78;
    margin-bottom: 20px;
}

.tips-text p {
    color: #666;
    line-height: 1.6;
    font-size: 1.1rem;
}

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

.tip-item {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-top: 4px solid #1d4e78;
}

.tip-item h4 {
    color: #1d4e78;
    margin-bottom: 15px;
}

.tip-item p {
    color: #666;
    line-height: 1.6;
}

/* Virtual Tour */
.virtual-tour {
    padding: 60px 0;
}

.virtual-tour h2 {
    text-align: center;
    color: #1d4e78;
    margin-bottom: 40px;
}

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

.virtual-text h3 {
    color: #1d4e78;
    margin-bottom: 20px;
}

.virtual-text p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.virtual-text ul {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.virtual-text li {
    padding: 8px 0;
    color: #666;
    line-height: 1.6;
    position: relative;
    padding-left: 20px;
}

.virtual-text li:before {
    content: "✓";
    color: #1d4e78;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.virtual-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Responsive Design for New Pages */
@media (max-width: 768px) {

    .history-content,
    .story-content,
    .impact-content,
    .vision-content,
    .quality-content,
    .tour-content,
    .schedule-content,
    .virtual-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .timeline::before {
        left: 20px;
    }

    .timeline-item {
        flex-direction: column !important;
        align-items: flex-start;
        margin-left: 40px;
    }

    .timeline-date {
        margin-bottom: 20px;
    }

    .timeline-content {
        margin: 0;
        width: 100%;
    }

    .philosophy-pillars,
    .approach-content,
    .values-grid,
    .goals-grid,
    .methods-content,
    .expectations-content,
    .tips-grid {
        grid-template-columns: 1fr;
    }

    .tour-form {
        padding: 20px;
    }
}

/* Multiple Locations Page Styles */
.locations-overview {
    padding: 60px 0;
}

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

.overview-text h2 {
    color: #1d4e78;
    margin-bottom: 30px;
}

.overview-text p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.overview-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Location Comparison */
.location-comparison {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.location-comparison h2 {
    text-align: center;
    color: #1d4e78;
    margin-bottom: 40px;
}

.comparison-table {
    max-width: 1000px;
    margin: 0 auto;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
}

.comparison-table th {
    background-color: #1d4e78;
    color: white;
    padding: 20px;
    text-align: left;
    font-weight: 600;
}

.comparison-table td {
    padding: 20px;
    border-bottom: 1px solid #eee;
    color: #666;
    line-height: 1.6;
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

.comparison-table a {
    color: #1d4e78;
    text-decoration: none;
}

.comparison-table a:hover {
    text-decoration: underline;
}

/* Location Detail */
.location-detail {
    padding: 60px 0;
}

.location-detail:nth-child(even) {
    background-color: #f8f9fa;
}

.location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.location-info h2 {
    color: #1d4e78;
    margin-bottom: 30px;
}

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

.highlight-item {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #1d4e78;
}

.highlight-item h3 {
    color: #1d4e78;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.highlight-item p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.highlight-item a {
    color: #1d4e78;
    text-decoration: none;
}

.highlight-item a:hover {
    text-decoration: underline;
}

.location-description h3,
.location-features h3,
.location-programs h3 {
    color: #1d4e78;
    margin-bottom: 15px;
}

.location-description p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.location-features ul,
.location-programs ul {
    list-style: none;
    padding: 0;
}

.location-features li,
.location-programs li {
    padding: 8px 0;
    color: #666;
    line-height: 1.6;
    position: relative;
    padding-left: 20px;
}

.location-features li:before,
.location-programs li:before {
    content: "✓";
    color: #1d4e78;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.location-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Directions Section */
.directions-section {
    padding: 60px 0;
}

.directions-section h2 {
    text-align: center;
    color: #1d4e78;
    margin-bottom: 40px;
}

.directions-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
}

.direction-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-top: 4px solid #1d4e78;
}

.direction-card h3 {
    color: #1d4e78;
    margin-bottom: 20px;
}

.direction-info h4 {
    color: #1d4e78;
    margin-bottom: 10px;
    margin-top: 20px;
}

.direction-info h4:first-child {
    margin-top: 0;
}

.direction-info p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

/* Location Benefits */
.location-benefits {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.location-benefits h2 {
    text-align: center;
    color: #1d4e78;
    margin-bottom: 40px;
}

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

.benefit-item {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
}

.benefit-item h3 {
    color: #1d4e78;
    margin-bottom: 15px;
}

.benefit-item p {
    color: #666;
    line-height: 1.6;
}

/* Visit Information */
.visit-information {
    padding: 60px 0;
}

.visit-information h2 {
    text-align: center;
    color: #1d4e78;
    margin-bottom: 40px;
}

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

.visit-text h3 {
    color: #1d4e78;
    margin-bottom: 20px;
}

.visit-text p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.visit-text h4 {
    color: #1d4e78;
    margin-bottom: 15px;
}

.visit-text ul {
    list-style: none;
    padding: 0;
}

.visit-text li {
    padding: 8px 0;
    color: #666;
    line-height: 1.6;
    position: relative;
    padding-left: 20px;
}

.visit-text li:before {
    content: "✓";
    color: #1d4e78;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.visit-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Responsive Design for Multiple Locations Page */
@media (max-width: 768px) {

    .overview-content,
    .location-content,
    .visit-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .location-highlights {
        grid-template-columns: 1fr;
    }

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

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

    .comparison-table {
        overflow-x: auto;
    }

    .comparison-table table {
        min-width: 600px;
    }
}

/* Book Your Party Page Styles */
.booking-overview {
    padding: 60px 0;
}

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

.overview-text h2 {
    color: #1d4e78;
    margin-bottom: 30px;
}

.overview-text p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.overview-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Booking Form */
.booking-form-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1d4e78 0%, #2a6aa3 100%);
    color: white;
}

.booking-form-section h2 {
    text-align: center;
    color: white;
    margin-bottom: 15px;
    font-size: 2.5rem;
    font-weight: 700;
}

.booking-form-section>p {
    text-align: center;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 50px;
    font-size: 1.2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.booking-form {
    max-width: 500px;
    margin: 0 auto;
    background: white;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    position: relative;
}

.booking-form::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4, #45b7d1, #96ceb4);
    border-radius: 22px;
    z-index: -1;
    opacity: 0.7;
}

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

.booking-form label {
    display: block;
    margin-bottom: 8px;
    color: #1d4e78;
    font-weight: 600;
    font-size: 1rem;
}

.booking-form input,
.booking-form textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #e1e8ed;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.booking-form input:focus,
.booking-form textarea:focus {
    outline: none;
    border-color: #1d4e78;
    background: white;
    box-shadow: 0 0 0 3px rgba(29, 78, 120, 0.1);
    transform: translateY(-2px);
}

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

.booking-form .btn {
    width: 100%;
    padding: 18px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 12px;
    background: linear-gradient(135deg, #1d4e78 0%, #2a6aa3 100%);
    border: none;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.booking-form .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(29, 78, 120, 0.3);
    background: linear-gradient(135deg, #2a6aa3 0%, #1d4e78 100%);
}

/* Application Form */
.application-form {
    padding: 80px 0;
    background: linear-gradient(135deg, #2c5aa0 0%, #1d4e78 100%);
    color: white;
}

.application-form h2 {
    text-align: center;
    color: white;
    margin-bottom: 15px;
    font-size: 2.5rem;
    font-weight: 700;
}

.application-form>p {
    text-align: center;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 50px;
    font-size: 1.2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.application-form form {
    max-width: 500px;
    margin: 0 auto;
    background: white;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    position: relative;
}

.application-form form::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4, #45b7d1, #96ceb4);
    border-radius: 22px;
    z-index: -1;
    opacity: 0.7;
}

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

.application-form label {
    display: block;
    margin-bottom: 8px;
    color: #1d4e78;
    font-weight: 600;
    font-size: 1rem;
}

.application-form input,
.application-form input[type="date"] {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #e1e8ed;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.application-form input:focus,
.application-form input[type="date"]:focus {
    outline: none;
    border-color: #1d4e78;
    background: white;
    box-shadow: 0 0 0 3px rgba(29, 78, 120, 0.1);
    transform: translateY(-2px);
}

/* File Upload Styling */
.file-upload-wrapper {
    position: relative;
    display: block;
}

.file-upload-wrapper input[type="file"] {
    position: absolute;
    opacity: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
    z-index: 2;
}

.file-upload-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 15px 20px;
    border: 2px dashed #1d4e78;
    border-radius: 12px;
    background: #f8f9fa;
    color: #1d4e78;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    min-height: 60px;
}

.file-upload-label:hover {
    background: #e3f2fd;
    border-color: #2a6aa3;
    transform: translateY(-2px);
}

.upload-icon {
    font-size: 1.5rem;
}

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

.application-form small {
    display: block;
    margin-top: 5px;
    color: #666;
    font-size: 0.85rem;
}

.date-format {
    color: #1d4e78 !important;
    font-weight: 500;
}

.application-form .btn {
    width: 100%;
    padding: 18px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 12px;
    background: linear-gradient(135deg, #1d4e78 0%, #2a6aa3 100%);
    border: none;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.application-form .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(29, 78, 120, 0.3);
    background: linear-gradient(135deg, #2a6aa3 0%, #1d4e78 100%);
}

/* Party Packages */
.party-packages {
    padding: 60px 0;
}

.party-packages h2 {
    text-align: center;
    color: #1d4e78;
    margin-bottom: 40px;
}

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

.package-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    position: relative;
    transition: transform 0.3s ease;
}

.package-card:hover {
    transform: translateY(-5px);
}

.package-card.featured {
    border: 3px solid #1d4e78;
    transform: scale(1.05);
}

.package-card.featured:hover {
    transform: scale(1.05) translateY(-5px);
}

.featured-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #1d4e78;
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: bold;
}

.package-card h3 {
    color: #1d4e78;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.package-price {
    font-size: 2.5rem;
    font-weight: bold;
    color: #1d4e78;
    margin-bottom: 20px;
}

.package-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.package-card li {
    padding: 8px 0;
    color: #666;
    line-height: 1.6;
    position: relative;
    padding-left: 20px;
}

.package-card li:before {
    content: "✓";
    color: #1d4e78;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.package-card p {
    color: #666;
    font-style: italic;
    margin: 0;
}

/* Booking Process */
.booking-process {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.booking-process h2 {
    text-align: center;
    color: #1d4e78;
    margin-bottom: 40px;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.step {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    position: relative;
}

.step-number {
    width: 50px;
    height: 50px;
    background: #1d4e78;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 20px;
}

.step h3 {
    color: #1d4e78;
    margin-bottom: 15px;
}

.step p {
    color: #666;
    line-height: 1.6;
}

/* Planning Tips */
.planning-tips {
    padding: 60px 0;
}

.planning-tips h2 {
    text-align: center;
    color: #1d4e78;
    margin-bottom: 40px;
}

.tips-content {
    max-width: 1200px;
    margin: 0 auto;
}

.tips-text {
    text-align: center;
    margin-bottom: 40px;
}

.tips-text h3 {
    color: #1d4e78;
    margin-bottom: 20px;
}

.tips-text p {
    color: #666;
    line-height: 1.6;
    font-size: 1.1rem;
}

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

.tip-item {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-top: 4px solid #1d4e78;
}

.tip-item h4 {
    color: #1d4e78;
    margin-bottom: 15px;
}

.tip-item p {
    color: #666;
    line-height: 1.6;
}

/* FAQ Section */
.faq-section {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.faq-section h2 {
    text-align: center;
    color: #1d4e78;
    margin-bottom: 40px;
}

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

.faq-item {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.faq-item:last-child {
    margin-bottom: 0;
}

.faq-item h3 {
    color: #1d4e78;
    margin-bottom: 15px;
}

.faq-item p {
    color: #666;
    line-height: 1.6;
}

/* Responsive Design for Book Your Party Page */
@media (max-width: 768px) {
    .overview-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

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

    .package-card.featured {
        transform: none;
    }

    .package-card.featured:hover {
        transform: translateY(-5px);
    }

    .process-steps {
        grid-template-columns: 1fr;
    }

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

    .booking-form {
        padding: 20px;
    }
}