* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

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

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 30px rgba(0, 0, 0, 0.15);
}

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

.logo h1 {
    font-size: 24px;
    font-weight: 800;
    color: #FF6B35;
    letter-spacing: -0.5px;
}

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

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 15px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-menu a:hover {
    color: #FF6B35;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #FF6B35;
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

/* Existing CSS stays the same, add the below */

.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    width: 28px;
    height: 22px;
    gap: 5px;
    z-index: 1100;
}

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

/* Mobile Styles */
@media (max-width: 1024px) {
    /* Show logo again */
    .logo {
        display: block !important;
        order: 1;
        flex-shrink: 0;
    }

    .logo h1 {
        font-size: 18px;
        color: #FF6B35;
        font-weight: 800;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        margin: 0;
    }

    /* Hide the INFO KEMITRAAN button on mobile */
    .nav-container .cta-button {
        display: none !important;
    }

    /* Layout: logo left, menu right */
    .nav-container {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        flex-wrap: nowrap;
        padding: 15px 20px;
        width: 100%;
        position: relative;
        z-index: 1001;
        gap: 10px;
    }

    .menu-toggle {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-shrink: 0;
        width: 28px;
        height: 22px;
        gap: 5px;
        cursor: pointer;
        order: 2;
        z-index: 1100;
    }

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

    /* Dropdown menu (same as before) */
    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        width: 100%;
        background: #fff;
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
        padding: 25px 30px;
        box-shadow: 0 5px 25px rgba(0, 0, 0, 0.15);
        transition: transform 0.4s ease, opacity 0.3s ease;
        opacity: 0;
        transform: translateY(-100%);
        pointer-events: none;
        z-index: 1050;
    }

    .nav-menu.active {
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
    }

    .nav-menu a {
        font-size: 16px;
        font-weight: 500;
        width: 100%;
        padding: 10px 0;
        border-bottom: 1px solid #f2f2f2;
    }

    .nav-menu a:last-child {
        border-bottom: none;
    }

    .menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(255, 255, 255, 0.4);
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.3s ease;
        z-index: 1000;
    }

    .menu-overlay.active {
        opacity: 1;
        pointer-events: auto;
    }

    /* Hamburger animation */
    .menu-toggle.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

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

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

/* Button Styles */
.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #FF6B35 0%, #FF8C42 100%);
    color: white;
    padding: 12px 28px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
    letter-spacing: 0.5px;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(255, 107, 53, 0.4);
}

.cta-button-large {
    display: inline-block;
    background: linear-gradient(135deg, #FF6B35 0%, #FF8C42 100%);
    color: white;
    padding: 18px 48px;
    border-radius: 35px;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 25px rgba(255, 107, 53, 0.35);
    letter-spacing: 0.5px;
}

.cta-button-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 35px rgba(255, 107, 53, 0.45);
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    background: linear-gradient(135deg, #FFF4E6 0%, #FFE4CC 100%);
    padding: 140px 40px 80px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 244, 230, 0.9) 0%, rgba(255, 228, 204, 0.9) 100%);
    z-index: 0;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 140, 66, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
}

.hero-content {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text {
    max-width: 600px;
}

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

.hero-image img {
    width: 100%;
    max-width: 550px;
    height: auto;
    border-radius: 25px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.hero-image img:hover {
    transform: scale(1.05);
}

.hero-title {
    font-size: 64px;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #1a1a1a;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 40px;
    color: #555;
    font-weight: 400;
}

.highlight {
    color: #FF6B35;
    position: relative;
}

.hero-features {
    display: flex;
    gap: 50px;
    margin-bottom: 40px;
}

.feature-item {
    text-align: center;
}

.feature-number {
    font-size: 42px;
    font-weight: 800;
    color: #FF6B35;
    margin-bottom: 8px;
}

.feature-text {
    font-size: 14px;
    color: #666;
    font-weight: 500;
}

/* Section Styles */
.section-title {
    font-size: 48px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 16px;
    color: #1a1a1a;
    letter-spacing: -0.5px;
}

.section-subtitle {
    font-size: 18px;
    text-align: center;
    color: #666;
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-cta {
    text-align: center;
    margin-top: 60px;
}

/* Why Section */
.why-section {
    padding: 100px 40px;
    background: white;
}

.why-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    gap: 40px;
}

.why-image-container {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.why-image-container img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.why-image-container:hover img {
    transform: scale(1.05);
}

.quote-box {
    background: linear-gradient(135deg, #FF6B35 0%, #FF8C42 100%);
    color: white;
    padding: 40px;
    border-radius: 20px;
    margin-bottom: 50px;
    box-shadow: 0 10px 40px rgba(255, 107, 53, 0.2);
}

.quote-text {
    font-size: 24px;
    font-weight: 600;
    line-height: 1.6;
    margin-bottom: 16px;
    font-style: italic;
}

.quote-author {
    font-size: 16px;
    opacity: 0.9;
    text-align: right;
}

.why-points {
    display: grid;
    gap: 30px;
}

.why-point {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.point-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #4CAF50 0%, #66BB6A 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
}

.point-content h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #1a1a1a;
}

.point-content p {
    color: #555;
    line-height: 1.6;
}

/* About Section */
.about-section {
    padding: 100px 40px;
    background: linear-gradient(135deg, #F5F7FA 0%, #E8EEF5 100%);
}

.about-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.about-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.about-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #FF6B35 0%, #FF8C42 100%);
}

.about-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
}

.about-number {
    font-size: 48px;
    font-weight: 900;
    color: #FF6B35;
    opacity: 0.2;
    margin-bottom: 16px;
}

.about-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.about-card p {
    color: #555;
    line-height: 1.7;
}

/* Gallery Section */
.gallery-section {
    padding: 100px 40px;
    background: white;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-item {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 250px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* Packages Section */
.packages-section {
    padding: 100px 40px;
    background: linear-gradient(135deg, #FFF4E6 0%, #FFE4CC 100%);
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    max-width: 1300px;
    margin: 0 auto;
}

.package-card {
    background: white;
    border-radius: 25px;
    padding: 40px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.package-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #FF6B35 0%, #FF8C42 100%);
}

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

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

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

.package-badge {
    position: absolute;
    top: 30px;
    right: 30px;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 12px;
    color: white;
    letter-spacing: 0.5px;
}

.badge-red {
    background: linear-gradient(135deg, #E74C3C 0%, #C0392B 100%);
}

.badge-orange {
    background: linear-gradient(135deg, #FF6B35 0%, #E65C00 100%);
}

.badge-green {
    background: linear-gradient(135deg, #27AE60 0%, #229954 100%);
}

.package-title {
    font-size: 28px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 16px;
    margin-top: 10px;
}

.package-size {
    font-size: 16px;
    color: #666;
    margin-bottom: 30px;
    font-weight: 500;
}

.package-price {
    background: linear-gradient(135deg, #F8F9FA 0%, #E9ECEF 100%);
    padding: 25px;
    border-radius: 15px;
    margin-bottom: 30px;
    text-align: center;
}

.price-normal {
    font-size: 14px;
    color: #666;
    margin-bottom: 8px;
}

.strikethrough {
    text-decoration: line-through;
    opacity: 0.6;
}

.price-promo {
    font-size: 14px;
    font-weight: 700;
    color: #E74C3C;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.price-main {
    font-size: 36px;
    font-weight: 900;
    color: #FF6B35;
    margin-bottom: 8px;
}

.price-note {
    font-size: 12px;
    color: #999;
    font-style: italic;
}

.package-locations h4,
.package-features h4,
.package-investment h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.package-locations ul {
    list-style: none;
    margin-bottom: 25px;
}

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

.package-locations li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #4CAF50;
    font-weight: 700;
}

.package-features {
    background: #F8F9FA;
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 25px;
}

.package-features p {
    margin-bottom: 8px;
    color: #555;
    font-size: 14px;
}

.package-investment {
    background: linear-gradient(135deg, #FFF4E6 0%, #FFE4CC 100%);
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 25px;
}

.package-investment p {
    margin-bottom: 8px;
    color: #555;
    font-size: 14px;
}

.total-investment {
    font-size: 20px;
    font-weight: 800;
    color: #FF6B35;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 2px solid rgba(255, 107, 53, 0.2);
}

/* Menu Section */
.menu-section {
    padding: 100px 40px;
    background: white;
}

.menu-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 60px;
    max-width: 1000px;
    margin: 0 auto;
}

.menu-column h3 {
    font-size: 28px;
    font-weight: 800;
    color: #FF6B35;
    margin-bottom: 24px;
    text-align: center;
}

.menu-list {
    list-style: none;
    background: linear-gradient(135deg, #F8F9FA 0%, #E9ECEF 100%);
    padding: 30px;
    border-radius: 15px;
}

.menu-list li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    color: #555;
    font-weight: 500;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.menu-list li:last-child {
    border-bottom: none;
}

.menu-list li::before {
    content: '🍽️';
    position: absolute;
    left: 0;
    font-size: 16px;
}

/* Benefits Section */
.benefits-section {
    padding: 100px 40px;
    background: linear-gradient(135deg, #E8EEF5 0%, #F5F7FA 100%);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.benefit-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    text-align: center;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
}

.benefit-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.benefit-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.benefit-card p {
    color: #555;
    line-height: 1.7;
}

/* Partners Section */
.partners-section {
    padding: 100px 40px;
    background: white;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.partner-item {
    text-align: center;
    padding: 40px;
    background: linear-gradient(135deg, #F8F9FA 0%, #E9ECEF 100%);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.partner-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.partner-logo {
    font-size: 32px;
    font-weight: 900;
    color: #FF6B35;
    margin-bottom: 16px;
    letter-spacing: 2px;
}

.partner-item p {
    color: #555;
    line-height: 1.6;
}

/* Exhibition Section */
.exhibition-section {
    padding: 100px 40px;
    background: linear-gradient(135deg, #FFF4E6 0%, #FFE4CC 100%);
}

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

.exhibition-images {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.exhibition-images img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.exhibition-images img:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.exhibition-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.highlight-item {
    text-align: center;
    padding: 40px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.highlight-item h3 {
    font-size: 48px;
    font-weight: 900;
    color: #FF6B35;
    margin-bottom: 12px;
}

.highlight-item p {
    font-size: 16px;
    color: #555;
    font-weight: 600;
}

/* Final CTA Section */
.final-cta-section {
    padding: 100px 40px;
    background: linear-gradient(135deg, #000000 0%, #515151 100%);
    color: white;
    text-align: center;
}

.final-cta-section .section-title,
.final-cta-section .section-subtitle {
    color: white;
}

.cta-container {
    margin: 40px 0;
}

.cta-note {
    margin-top: 20px;
    font-size: 14px;
    opacity: 0.9;
}

.contact-info {
    margin-top: 40px;
    font-size: 18px;
    font-weight: 600;
}

.contact-info p {
    margin: 8px 0;
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: white;
    padding: 60px 40px 30px;
}

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

.footer-section h3 {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 16px;
    color: #FF6B35;
}

.footer-section h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 16px;
}

.footer-section p {
    line-height: 1.7;
    color: #ccc;
    margin-bottom: 8px;
}

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

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

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

.footer-section ul li a:hover {
    color: #FF6B35;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #999;
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 30px rgba(37, 211, 102, 0.7);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-container {
        flex-direction: row;
        gap: 20px;
        padding: 20px;
    }
    
    .nav-menu {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-image {
        order: -1;
    }
    
    .hero-title {
        font-size: 42px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .hero-features {
        flex-direction: column;
        gap: 30px;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .packages-grid,
    .about-content,
    .benefits-grid,
    .gallery-grid,
    .menu-content,
    .exhibition-images {
        grid-template-columns: 1fr;
    }
    
    .package-card.featured {
        transform: scale(1);
    }
    
    .menu-content {
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 32px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .package-title {
        font-size: 24px;
    }
    
    .cta-button-large {
        padding: 16px 32px;
        font-size: 16px;
    }
}