
    /* Hero Section */
    .hero-section {
        text-align: center;
        padding: 3rem 0;
        background: linear-gradient(135deg, #f8f6f0 0%, #efebe5 100%);
        border-radius: 1rem;
        margin-bottom: 3rem;
    }

    .hero-title {
        font-size: 3.5rem;
        color: #623e2a;
        margin-bottom: 1rem;
        font-family: 'Catchy Mager', serif;
    }

    .hero-subtitle {
        font-size: 1.8rem;
        color: #8b6f47;
        margin-bottom: 2rem;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-description {
        font-size: 1.2rem;
        color: #623e2a;
        margin: 2rem auto 3rem auto;
        max-width: 700px;
        line-height: 1.6;
    }





    /* Carousel */
    .carousel-section {
        margin: 3rem 0;
    }

    .carousel-container {
        position: relative;
        width: 100%;
        margin: 0;
        border-radius: 1rem;
        overflow: hidden;
        box-shadow: 0 8px 32px rgba(0,0,0,0.1);
    }

    .carousel-slides {
        position: relative;
        height: 60vh;
        min-height: 400px;
        max-height: 600px;
    }

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

    .carousel-slide.active {
        opacity: 1;
    }

    .carousel-slide img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        object-position: center;
        background: #f8f6f0;
        cursor: pointer;
        transition: transform 0.3s ease;
    }

    .carousel-slide img:hover {
        transform: scale(1.02);
    }

    .carousel-hint {
        text-align: center;
        margin-top: 1rem;
        font-size: 1rem;
        color: #8b6f47;
        font-style: italic;
    }

    .carousel-caption {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        background: linear-gradient(transparent, rgba(0,0,0,0.7));
        color: white;
        padding: 2rem 1rem 1rem;
        font-size: 1.4rem;
        text-align: center;
    }

    .carousel-btn {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        background: rgba(255,255,255,0.8);
        border: none;
        font-size: 2rem;
        padding: 1rem;
        cursor: pointer;
        border-radius: 50%;
        width: 50px;
        height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: background-color 0.3s;
    }

    .carousel-btn:hover {
        background: rgba(255,255,255,0.95);
    }

    .carousel-btn-prev {
        left: 1rem;
    }

    .carousel-btn-next {
        right: 1rem;
    }

    .carousel-dots {
        position: absolute;
        bottom: 1rem;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        gap: 0.5rem;
    }

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

    .carousel-dot.active {
        background: white;
    }

    /* Modal Styles */
    .modal {
        display: none;
        position: fixed;
        z-index: 1000;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.9);
        backdrop-filter: blur(5px);
    }

    .modal-content {
        position: relative;
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
    }

    .modal-close {
        position: absolute;
        top: 2rem;
        right: 3rem;
        color: white;
        font-size: 3rem;
        font-weight: bold;
        cursor: pointer;
        z-index: 1001;
        transition: color 0.3s;
    }

    .modal-close:hover {
        color: #ccc;
    }

    #modalImage {
        max-width: 90%;
        max-height: 80%;
        object-fit: contain;
        border-radius: 0.5rem;
        box-shadow: 0 4px 20px rgba(0,0,0,0.5);
    }

    .modal-btn {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        background: rgba(255,255,255,0.8);
        border: none;
        font-size: 3rem;
        padding: 1rem;
        cursor: pointer;
        border-radius: 50%;
        width: 70px;
        height: 70px;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: background-color 0.3s;
        z-index: 1001;
    }

    .modal-btn:hover {
        background: rgba(255,255,255,0.95);
    }

    .modal-btn-prev {
        left: 2rem;
    }

    .modal-btn-next {
        right: 2rem;
    }

    .modal-caption {
        position: absolute;
        bottom: 4rem;
        left: 50%;
        transform: translateX(-50%);
        color: white;
        font-size: 1.6rem;
        text-align: center;
        background: rgba(0,0,0,0.7);
        padding: 1rem 2rem;
        border-radius: 1rem;
        max-width: 80%;
    }

    .modal-dots {
        position: absolute;
        bottom: 1rem;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        gap: 0.8rem;
    }

    .modal-dot {
        width: 15px;
        height: 15px;
        border-radius: 50%;
        background: rgba(255,255,255,0.5);
        cursor: pointer;
        transition: background-color 0.3s;
    }

    .modal-dot.active {
        background: white;
    }

    /* Features Grid */
    .features-section {
        margin: 4rem 0;
        text-align: center;
    }



    .features-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2rem;
        margin-top: 2rem;
    }

    .feature-card {
        background: white;
        padding: 2rem;
        border-radius: 1rem;
        box-shadow: 0 4px 16px rgba(0,0,0,0.1);
        transition: transform 0.3s, box-shadow 0.3s;
    }

    .feature-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 24px rgba(0,0,0,0.15);
    }

    .feature-card h3 {
        color: #623e2a;
        margin-bottom: 1rem;
        font-size: 1.6rem;
    }

    /* Expert Section */
    .expert-section {
        margin: 4rem 0;
        background: #f8f6f0;
        padding: 3rem;
        border-radius: 1rem;
    }

    .expert-content {
        display: grid;
        grid-template-columns: 2fr 1fr;
        gap: 3rem;
        align-items: center;
    }

    .expert-text h2 {
        color: #623e2a;
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
    }

    .expert-image img {
        width: 100%;
        border-radius: 1rem;
        box-shadow: 0 4px 16px rgba(0,0,0,0.1);
    }

    /* Package Grid */
    .package-section {
        margin: 4rem 0;
        text-align: center;
    }

    .package-section h2 {
        font-size: 2.5rem;
        color: #623e2a;
        margin-bottom: 3rem;
    }

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

    .package-item {
        background: white;
        padding: 2rem;
        border-radius: 1rem;
        box-shadow: 0 4px 16px rgba(0,0,0,0.1);
    }

    .package-item h3 {
        color: #623e2a;
        margin-bottom: 1rem;
        font-size: 1.6rem;
    }

    /* Pricing Section */
    .pricing-section {
        margin: 4rem 0;
        text-align: center;
    }

    .pricing-card {
        background: linear-gradient(135deg, #623e2a 0%, #8b6f47 100%);
        color: white;
        padding: 3rem;
        border-radius: 1rem;
        max-width: 600px;
        margin: 0 auto;
    }

    .pricing-card h2 {
        font-size: 2.5rem;
        margin-bottom: 2rem;
    }

    .pricing-options {
        display: flex;
        justify-content: center;
        gap: 2rem;
        margin: 2rem 0;
    }

    .pricing-option {
        background: rgba(255,255,255,0.1);
        padding: 1.5rem;
        border-radius: 1rem;
        min-width: 200px;
    }

    .pricing-option.special {
        background: rgba(255,255,255,0.2);
        border: 2px solid rgba(255,255,255,0.3);
    }

    .price-large {
        display: block;
        font-size: 2.5rem;
        font-weight: bold;
    }

    .price-desc {
        font-size: 1.2rem;
        opacity: 0.9;
    }

    .savings {
        display: block;
        color: #90EE90;
        font-weight: bold;
        margin-top: 0.5rem;
    }

    .limited-spots {
        font-size: 1.3rem;
        margin: 2rem 0;
        font-weight: bold;
    }

    .pricing-button {
        font-size: 1.8rem !important;
        padding: 1.5rem 3rem !important;
        background-color: white !important;
        color: #623e2a !important;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
        .hero-title {
            font-size: 2.5rem;
        }
        
        .hero-subtitle {
            font-size: 1.4rem;
        }
        
        .expert-content {
            grid-template-columns: 1fr;
            text-align: center;
        }
        
        .pricing-options {
            flex-direction: column;
            align-items: center;
        }
        
        .carousel-btn {
            width: 40px;
            height: 40px;
            font-size: 1.5rem;
        }

        .carousel-slides {
            height: 50vh;
            min-height: 250px;
            max-height: 400px;
        }
        
        /* Modal responsive */
        .modal-close {
            top: 1rem;
            right: 1.5rem;
            font-size: 2.5rem;
        }
        
        .modal-btn {
            width: 50px;
            height: 50px;
            font-size: 2rem;
        }
        
        .modal-btn-prev {
            left: 1rem;
        }
        
        .modal-btn-next {
            right: 1rem;
        }
        
        .modal-caption {
            bottom: 3rem;
            font-size: 1.4rem;
            padding: 0.8rem 1.5rem;
        }
        
        #modalImage {
            max-width: 95%;
            max-height: 70%;
        }
    }
    