    nav {
        padding: 1rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-content {
        max-width: 1280px;
        margin: 0 auto;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0 1rem;
    }

    .nav-links a {
        position: relative;
        padding: 0.5rem 1rem;
    }

    .nav-links a::after {
        content: '';
        position: absolute;
        bottom: -2px;
        left: 0;
        width: 0;
        height: 2px;
        background: linear-gradient(to right, #ec4899, #8b5cf6);
        transition: width 0.3s ease;
    }

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

    /* Corporate section styles */
    .corporate {
        padding: 5rem 1rem;
        background-color: #0f172a;
        position: relative;
        overflow: hidden;
    }

    .corporate::before {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(to bottom right, #ec4899 0%, #8b5cf6 100%);
        opacity: 0.05;
    }

    .corporate-content {
        position: relative;
        max-width: 1280px;
        margin: 0 auto;
        z-index: 1;
    }

    .corporate-card {
        background: rgba(30, 41, 59, 0.8);
        backdrop-filter: blur(8px);
        border-radius: 1rem;
        padding: 2rem;
        box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    }

    .corporate-card p {
        color: #cbd5e1;
        margin-bottom: 1.5rem;
        line-height: 1.8;
        font-size: 1.125rem;
    }

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

    /* footer styles */
    footer {
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        padding: 4rem 1rem;
    }

    .social-links {
        margin-bottom: 3rem;
    }

    .social-link {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.1);
        transition: all 0.3s ease;
    }

    .social-link:hover {
        background: linear-gradient(to right, #ec4899, #8b5cf6);
        transform: translateY(-2px);
    }

    footer .cta-button {
        margin-bottom: 2rem;
        background: rgba(255, 255, 255, 0.1);
    }

    footer .cta-button:hover {
        background: linear-gradient(to right, #ec4899, #8b5cf6);
    }

    .copyright {
        font-size: 0.875rem;
        opacity: 0.7;
    }

    /* responsive styles */
    @media (max-width: 768px) {
        .nav-links.active {
            padding: 1rem;
            gap: 0.5rem;
        }

        .nav-links.active a {
            padding: 0.75rem 1rem;
            width: 100%;
            text-align: center;
            border-radius: 0.375rem;
        }

        .nav-links.active a:hover {
            background: rgba(255, 255, 255, 0.1);
        }

        .corporate-card {
            padding: 1.5rem;
        }

        .corporate-card p {
            font-size: 1rem;
        }
    }
    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    html {
        scroll-behavior: smooth;
    }

    body {
        font-family: Arial, sans-serif;
        background-color: #0f172a;
        color: white;
        line-height: 1.6;
    }

    /* Custom scrollbar */
    ::-webkit-scrollbar {
        width: 8px;
    }

    ::-webkit-scrollbar-track {
        background: #1e293b;
    }

    ::-webkit-scrollbar-thumb {
        background: #ec4899;
        border-radius: 4px;
    }

    ::-webkit-scrollbar-thumb:hover {
        background: #be185d;
    }

    .logo {
        font-size: 1.5rem;
        font-weight: bold;
        background: linear-gradient(to right, #ec4899, #8b5cf6);
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }

    .nav-links {
        display: flex;
        gap: 2rem;
    }

    .nav-links a:hover {
        color: white;
    }

    .menu-button {
        display: none;
        background: none;
        border: none;
        color: white;
        cursor: pointer;
        font-size: 1.5rem;
    }

    /* Hero Section */
    .hero {
        height: 100vh;
        position: relative;
        overflow: hidden;
    }

    .slide {
        position: absolute;
        inset: 0;
        opacity: 0;
        transition: opacity 1s;
    }

    .slide.active {
        opacity: 1;
    }

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

    .slide-overlay {
        position: absolute;
        inset: 0;
        background: rgba(0, 0, 0, 0.5);
    }

    .slide-content {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        text-align: center;
        width: 90%;
        max-width: 800px;
    }

    .slide-title {
        font-size: 3rem;
        margin-bottom: 1rem;
        opacity: 0;
        transform: translateY(20px);
        animation: fadeInUp 0.5s forwards;
    }

    .slide-subtitle {
        font-size: 1.5rem;
        margin-bottom: 2rem;
        opacity: 0;
        transform: translateY(20px);
        animation: fadeInUp 0.5s 0.2s forwards;
    }

    @keyframes fadeInUp {
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .cta-button {
        background: linear-gradient(to right, #ec4899, #8b5cf6);
        color: white;
        padding: 1rem 2rem;
        border: none;
        border-radius: 9999px;
        font-size: 1.125rem;
        font-weight: 600;
        cursor: pointer;
        transition: transform 0.3s;
    }

    .cta-button:hover {
        transform: scale(1.05);
    }

    .slide-nav {
        position: absolute;
        bottom: 2rem;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        gap: 0.5rem;
        z-index: 10;
    }

    .slide-nav-dot {
        width: 0.75rem;
        height: 0.75rem;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.5);
        cursor: pointer;
        transition: background-color 0.3s;
    }

    .slide-nav-dot.active {
        background: white;
    }

    /* Packages Section */
    .packages {
        padding: 5rem 1rem;
        background-color: #0f172a;
    }

    .section-title {
        text-align: center;
        font-size: 2.5rem;
        margin-bottom: 3rem;
        background: linear-gradient(to right, #ec4899, #8b5cf6);
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
    }

    .packages-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2rem;
        max-width: 1280px;
        margin: 0 auto;
    }

    .package-card {
        background: #1e293b;
        border-radius: 0.5rem;
        overflow: hidden;
        transition: transform 0.3s;
    }

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

    .package-image {
        width: 100%;
        height: 200px;
        object-fit: cover;
    }

    .package-content {
        padding: 1.5rem;
    }

    .package-title {
        font-size: 1.25rem;
        margin-bottom: 0.5rem;
    }

    .package-description {
        color: #cbd5e1;
        margin-bottom: 1rem;
    }

    .package-price {
        font-size: 1.5rem;
        color: #ec4899;
        font-weight: bold;
    }

    /* Store Info Section */
    .store-info {
        padding: 5rem 1rem;
        background-color: #1e293b;
        position: relative;
    }

    .store-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2rem;
        max-width: 1280px;
        margin: 0 auto;
    }

    .info-card {
        display: flex;
        align-items: flex-start;
        gap: 1rem;
    }

    .info-icon {
        color: #ec4899;
        font-size: 1.5rem;
    }

    /* Contact Section */
    .contact {
        padding: 5rem 1rem;
        background-color: #0f172a;
    }

    .contact-form {
        max-width: 600px;
        margin: 0 auto;
    }

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

    .form-label {
        display: block;
        color: #cbd5e1;
        margin-bottom: 0.5rem;
    }

    .form-input,
    .form-textarea {
        width: 100%;
        padding: 0.75rem;
        background: #1e293b;
        border: none;
        border-radius: 0.375rem;
        color: white;
    }

    .form-input:focus,
    .form-textarea:focus {
        outline: 2px solid #ec4899;
    }

    /* Footer */
    footer {
        padding: 3rem 1rem;
        background-color: #0f172a;
        text-align: center;
    }

    .social-links {
        display: flex;
        justify-content: center;
        gap: 1.5rem;
        margin-bottom: 2rem;
    }

    .social-link {
        color: #64748b;
        transition: color 0.3s;
    }

    .social-link:hover {
        color: #ec4899;
    }

    .copyright {
        color: #64748b;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
        .nav-links {
            display: none;
        }

        .menu-button {
            display: block;
        }

        .nav-links.active {
            display: flex;
            flex-direction: column;
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            background-color: rgba(15, 23, 42, 0.95);
            padding: 1rem;
        }

        .slide-title {
            font-size: 2rem;
        }

        .slide-subtitle {
            font-size: 1.25rem;
        }
    }

    /* Modal Styles */
    .modal {
        position: fixed;
        z-index: 999;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .modal-content {
        background: white;
        padding: 20px;
        border-radius: 5px;
        width: 300px;
        text-align: center;
    }
    .close {
        float: right;
        font-size: 20px;
        cursor: pointer;
    }

    .order-form {
        position: fixed;
        bottom: 0;
        width: 100%;
        background: #f8f9fa;
        box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
        padding: 15px;
        border-top: 3px solid #007bff;
    }

    .order-form h3 {
        margin: 0 0 10px;
        color: #343a40;
    }

    .order-form form {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: 10px;
    }

    .order-form label {
        flex: 1 1 100%;
        font-size: 14px;
        color: #495057;
    }

    .order-form input, .order-form select, .order-form button {
        padding: 10px;
        border: 1px solid #ced4da;
        border-radius: 4px;
        font-size: 14px;
    }

    .order-form select, .order-form input {
        flex: 1 1 30%;
    }

    .order-form button {
        background-color: #007bff;
        color: white;
        cursor: pointer;
        flex: 1 1 20%;
        transition: background-color 0.3s;
    }

    .order-form button:hover {
        background-color: #0056b3;
    }

    .error-message {
        color: red;
        font-size: 12px;
        margin-top: -8px;
        margin-bottom: 8px;
        flex: 1 1 100%;
    }
/* There are duplicate and unused styles that are present I didn't get a chance to cleanup the code. Please be careful when editing */