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

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.2;
            color: #333;
            overflow-x: hidden;
        }

        /* Navigation Bar */
        nav {
            background-color: #01026e;
            padding: 1rem 5%;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }

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

        .logo {
            height: 40px;

        }

        .nav-menu {
            display: flex;
            list-style: none;
            gap: 2rem;
        }

        .nav-menu a {
            color: white;
            text-decoration: none;
            font-size: 1.1rem;
            transition: color 0.3s;
        }

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

        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
        }

        .hamburger span {
            width: 25px;
            height: 3px;
            background-color: white;
            margin: 3px 0;
            transition: 0.3s;
        }

        /* Hero Section */
        .hero {
            margin-top: 70px;
            /* height: 100vh; */
            display: flex;
            justify-content: center;
            align-items: center;
            background: linear-gradient(180deg, #5254ca 50%, #0066cc 100%);
            position: relative;
            overflow: hidden;
        }
        .logo-hero {
            position: absolute;
            display: flex;
            justify-content: center;
            align-items: center;
            max-width: 80%;
            height: auto;
            top: 100px;
            /* bottom: 60px; */
            /* left: 20px; */
            /* height: 50vh; */
            /* z-index: 10; */
            animation: fadeInScale 2.5s ease-in-out;
        }

        .hero-logo {
             /* height: 100vh; */
            max-width: 100%;
            max-height: 100%;
            /* animation: fadeInScale 2.5s ease-in-out; */
        }

        @keyframes fadeInScale {
            0% {
                opacity: 0;
                transform: scale(0.8);
            }
            100% {
                opacity: 1;
                transform: scale(1);
            }
        }

        /* About Section */
        .about-section {
            background-color: rgb(255, 255, 255);
            padding: 5rem 5%;
        }

        .about-container {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: center;
        }

        .about-text h2 {
            color: #01026e;
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
        }

        .about-text p {
            font-size: 1.1rem;
            line-height: 1.8;
            color: #555;
            text-align: justify;
        }

        .about-image {
            width: 100%;
            height: 400px;
            border-radius: 10px;
            object-fit: cover;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
        }

        /* Gallery Section */
        .gallery-section {
            padding: 5rem 5%;
            background-color: #f5f5f5;
        }

        .gallery-section h2 {
            text-align: center;
            color: #01026e;
            font-size: 2.5rem;
            margin-bottom: 3rem;
        }

        .gallery-grid {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
        }

        .gallery-item {
            height: 300px;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: transform 0.3s;
            display: block;
            text-decoration: none;
            cursor: pointer;
        }

        .gallery-item:hover {
            transform: translateY(-10px);
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* Workflow Section */
        .workflow-section {
            padding: 5rem 5%;
            background-color: white;
        }

        .workflow-container {
            max-width: 1400px;
            margin: 0 auto;
        }

        .workflow-container h2 {
            text-align: center;
            color: #01026e;
            font-size: 2.5rem;
            margin-bottom: 2rem;
        }

        .workflow-text {
            text-align: center;
            font-size: 1.1rem;
            color: #555;
            margin-bottom: 3rem;
            max-width: 900px;
            margin-left: auto;
            margin-right: auto;
        }

        .workflow-image {
            width: 100%;
            max-height: 600px;
            object-fit: cover;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
        }

        /* Certification Section */
        .certification-section {
            padding: 5rem 5%;
            background-color: #f5f5f5;
        }

        .certification-section h2 {
            text-align: center;
            color: #01026e;
            font-size: 2.5rem;
            margin-bottom: 3rem;
        }

        .cert-grid {
            max-width: 1500px;
            margin: 0 auto;
            display: flex;
            flex-wrap: nowrap;
            justify-content: center;
            gap: 1.5rem;
            overflow-x: auto;
            overflow-y: hidden;
            padding-bottom: 0.75rem;
            scroll-snap-type: x proximity;
            -webkit-overflow-scrolling: touch;
            scrollbar-width: thin;
            scrollbar-color: rgba(1,2,110,0.35) transparent;
        }

        .cert-grid::-webkit-scrollbar {
            height: 8px;
        }

        .cert-grid::-webkit-scrollbar-track {
            background: transparent;
        }

        .cert-grid::-webkit-scrollbar-thumb {
            background: rgba(1,2,110,0.35);
            border-radius: 4px;
        }

        .cert-item {
            background: white;
            padding: 1.5rem;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            display: flex;
            justify-content: center;
            align-items: center;
            height: 150px;
            min-width: 180px;
            transition: transform 0.3s;
            scroll-snap-align: start;
        }

        .cert-item:hover {
            transform: scale(1.05);
        }

        .cert-item img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
        }


        /* Feedback Section */
        .feedback-section {
            padding: 5rem 5%;
            background-color: white;
        }

        .feedback-section h2 {
            text-align: center;
            color: #01026e;
            font-size: 2.5rem;
            margin-bottom: 3rem;
        }

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

        .feedback-card {
            background: #f9f9f9;
            padding: 2rem;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }

        .feedback-card .stars {
            color: #ffd700;
            font-size: 1.2rem;
            margin-bottom: 1rem;
        }

        .feedback-card p {
            font-style: italic;
            color: #555;
            margin-bottom: 1rem;
        }

        .feedback-card .customer-name {
            font-weight: bold;
            color: #01026e;
        }

        /* Share Feedback Section */
        .share-feedback-section {
            padding: 5rem 5%;
            background-color: #f5f5f5;
        }

        .share-feedback-container {
            max-width: 800px;
            margin: 0 auto;
            background: #ffffff;
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            padding: 3rem;
        }

        .share-feedback-container h2 {
            text-align: center;
            color: #01026e;
            font-size: 2.3rem;
            margin-bottom: 1rem;
        }

        .share-feedback-text {
            text-align: center;
            color: #555;
            margin-bottom: 2rem;
            line-height: 1.6;
        }

        .feedback-form {
            display: grid;
            gap: 1.5rem;
        }

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

        .form-group label {
            font-weight: 600;
            color: #01026e;
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            padding: 0.9rem 1rem;
            border: 1px solid rgba(1,2,110,0.2);
            border-radius: 8px;
            font-size: 1rem;
            transition: border-color 0.3s, box-shadow 0.3s;
            font-family: inherit;
        }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #01026e;
            box-shadow: 0 0 0 3px rgba(1,2,110,0.15);
        }

        .feedback-submit {
            background: #01026e;
            color: #fff;
            border: none;
            padding: 1rem 2rem;
            border-radius: 8px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: transform 0.2s, box-shadow 0.2s;
            justify-self: center;
            min-width: 200px;
        }

        .feedback-submit:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(1,2,110,0.3);
        }

        /* Contact Page */
        .contact-hero {
            margin-top: 90px;
            padding: 5rem 5%;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 3rem;
            align-items: center;
            background: linear-gradient(120deg, #01026e, #1a3fd3);
            color: #fff;
        }

        .contact-hero-content h1 {
            font-size: 3rem;
            margin-bottom: 1.5rem;
        }

        .contact-hero-content p {
            line-height: 1.7;
            color: rgba(255,255,255,0.85);
            margin-bottom: 1.5rem;
        }

        .contact-hero-content .eyebrow {
            text-transform: uppercase;
            letter-spacing: 0.15rem;
            font-size: 0.9rem;
            color: #a8c6ff;
            margin-bottom: 0.5rem;
        }

        .hero-cta {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: #4dd2ff;
            color: #01026e;
            padding: 0.9rem 2rem;
            border-radius: 50px;
            font-weight: 600;
            text-decoration: none;
            transition: transform 0.2s, box-shadow 0.2s;
        }

        .hero-cta:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.2);
        }

        .contact-hero-graphic img {
            width: 100%;
            max-width: 420px;
            display: block;
            margin: 0 auto;
        }

        .contact-info-section {
            padding: 4rem 5%;
            background: #fff;
        }

        .contact-info-grid {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
            gap: 1.5rem;
        }

        .contact-card {
            background: #f5f5f5;
            padding: 2rem;
            border-radius: 12px;
            text-align: center;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
        }

        .contact-card i {
            font-size: 2rem;
            color: #01026e;
            margin-bottom: 1rem;
        }

        .contact-card h3 {
            margin-bottom: 0.5rem;
            color: #01026e;
        }

        .contact-form-map {
            padding: 5rem 5%;
            background: #f5f5f5;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 2.5rem;
            align-items: stretch;
        }

        .contact-form-wrapper,
        .contact-map-wrapper {
            background: #fff;
            border-radius: 15px;
            box-shadow: 0 15px 35px rgba(0,0,0,0.08);
            padding: 2.5rem;
        }

        .contact-form-wrapper h2 {
            color: #01026e;
            margin-bottom: 0.5rem;
        }

        .contact-form-wrapper p {
            color: #555;
            margin-bottom: 1.5rem;
        }

        .contact-form {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .contact-form .form-row {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 1.5rem;
        }

        .contact-form .form-group label {
            color: #01026e;
            font-weight: 600;
            margin-bottom: 0.3rem;
        }

        .contact-form .form-group input,
        .contact-form .form-group select,
        .contact-form .form-group textarea {
            width: 100%;
            padding: 0.85rem 1rem;
            border: 1px solid rgba(1,2,110,0.2);
            border-radius: 10px;
            font-size: 1rem;
            font-family: inherit;
            transition: border-color 0.3s, box-shadow 0.3s;
        }

        .contact-form .form-group input:focus,
        .contact-form .form-group select:focus,
        .contact-form .form-group textarea:focus {
            outline: none;
            border-color: #01026e;
            box-shadow: 0 0 0 3px rgba(1,2,110,0.1);
        }

        .contact-map-wrapper h3 {
            color: #01026e;
            margin-bottom: 1rem;
        }

        .map-placeholder {
            width: 100%;
            height: 350px;
            border-radius: 12px;
            overflow: hidden;
        }

        .contact-cta {
            padding: 4rem 5%;
            background: #01026e;
            color: white;
        }

        .contact-cta-content {
            max-width: 900px;
            margin: 0 auto;
            text-align: center;
        }

        .cta-button {
            display: inline-block;
            margin-top: 1.5rem;
            background: #4dd2ff;
            color: #01026e;
            padding: 0.9rem 2.5rem;
            border-radius: 50px;
            font-weight: 600;
            text-decoration: none;
            transition: transform 0.2s;
        }

        .cta-button:hover {
            transform: translateY(-2px);
        }

        /* Footer */
        footer {
            background-color: #01026e;
            color: white;
            padding: 3rem 5%;
        }

        .footer-container {
            max-width: 1400px;
            margin: 0 auto;
        }

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

        .footer-section h3 {
            margin-bottom: 1rem;
            font-size: 1.3rem;
        }

        .founder-info {
            margin-bottom: 0.5rem;
        }

        .social-icons {
            display: flex;
            gap: 1rem;
            margin-top: 1rem;
        }

        .social-icons a {
            color: white;
            font-size: 1.5rem;
            transition: color 0.3s;
        }

        .social-icons a:hover {
            color: #4dd2ff;
        }

        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid rgba(255,255,255,0.2);
        }

        /* Order Page Styles */
        .order-section {
            margin-top: 70px;
            padding: 5rem 5%;
            background-color: #f5f5f5;
        }

        .order-container {
            max-width: 1000px;
            margin: 0 auto;
            background: #ffffff;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            padding: 3rem;
            box-sizing: border-box;
            overflow-x: hidden;
        }

        .order-container h1 {
            text-align: center;
            color: #01026e;
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }

        .order-intro {
            text-align: center;
            color: #555;
            margin-bottom: 3rem;
            line-height: 1.6;
        }

        .order-form {
            display: flex;
            flex-direction: column;
            gap: 2.5rem;
        }

        .form-section {
            padding: 2rem;
            background: #f9f9f9;
            border-radius: 12px;
            border: 1px solid rgba(1,2,110,0.1);
            box-sizing: border-box;
            overflow-x: hidden;
        }

        .form-section h2 {
            color: #01026e;
            font-size: 1.8rem;
            margin-bottom: 1.5rem;
            border-bottom: 2px solid #01026e;
            padding-bottom: 0.5rem;
        }

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

        .bottle-size-options {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .bottle-size-item {
            background: #ffffff;
            padding: 1.5rem;
            border-radius: 10px;
            border: 2px solid rgba(1,2,110,0.2);
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: border-color 0.3s, box-shadow 0.3s;
            overflow: hidden;
            box-sizing: border-box;
        }

        .bottle-size-item:hover {
            border-color: #01026e;
            box-shadow: 0 5px 15px rgba(1,2,110,0.15);
        }

        .bottle-size-info {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }

        .bottle-size-label {
            font-size: 1.3rem;
            font-weight: 600;
            color: #01026e;
        }

        .bottle-price {
            font-size: 1rem;
            color: #666;
        }

        .quantity-control {
            display: flex;
            align-items: center;
            gap: 1rem;
            flex-wrap: wrap;
        }

        .quantity-control label {
            font-weight: 600;
            color: #01026e;
            flex-shrink: 0;
        }

        .quantity-input {
            width: 80px;
            padding: 0.7rem;
            border: 2px solid rgba(1,2,110,0.2);
            border-radius: 8px;
            font-size: 1rem;
            text-align: center;
            transition: border-color 0.3s;
            flex-shrink: 0;
        }

        .quantity-input:focus {
            outline: none;
            border-color: #01026e;
            box-shadow: 0 0 0 3px rgba(1,2,110,0.1);
        }

        .subtotal {
            font-weight: 600;
            color: #01026e;
            font-size: 1.1rem;
            min-width: 60px;
            text-align: right;
            flex-shrink: 0;
        }

        .total-price-container {
            margin-top: 2rem;
            padding: 1.2rem 1.5rem;
            background: #f8f9fa;
            color: #01026e;
            border: 2px solid #e0e0e0;
            border-radius: 8px;
            text-align: right;
            font-size: 1.3rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .total-price-container strong {
            font-size: 1.5rem;
            font-weight: 600;
            color: #01026e;
        }

        .total-price-container #totalPrice {
            font-size: 1.8rem;
            font-weight: 700;
            color: #25D366;
        }

        .order-submit {
            background: #25D366;
            color: #ffffff;
            border: none;
            padding: 1.2rem 3rem;
            border-radius: 50px;
            font-size: 1.2rem;
            font-weight: 600;
            cursor: pointer;
            transition: transform 0.2s, box-shadow 0.2s;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.8rem;
            margin: 1rem auto 0;
            min-width: 300px;
        }

        .order-submit:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
        }

        .order-submit i {
            font-size: 1.5rem;
        }

        @media (max-width: 1024px) {
            .cert-grid {
                display: grid;
                grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
                gap: 1.5rem;
                overflow: visible;
            }
            .cert-item {
                min-width: auto;
            }
        }

        /* Mobile Responsive */
        @media (max-width: 768px) {
            .nav-menu {
                position: fixed;
                left: -100%;
                top: 70px;
                flex-direction: column;
                background-color: #01026e;
                width: 100%;
                text-align: center;
                transition: 0.3s;
                padding: 2rem 0;
            }

            .nav-menu.active {
                left: 0;
            }

            .hamburger {
                display: flex;
            }

            .about-container {
                grid-template-columns: 1fr;
            }

            .about-text {
                order: 2;
            }

            .about-image {
                order: 1;
                height: 300px;
            }

            .about-text h2 {
                font-size: 2rem;
            }

            .gallery-section h2,
            .workflow-container h2,
            .certification-section h2,
            .feedback-section h2 {
                font-size: 2rem;
            }
            .gallery-grid {
                grid-template-columns: repeat(2, minmax(0, 1fr));
                gap: 1rem;
            }
            .certification-section {
                padding: 3.5rem 1.5rem;
            }
            .cert-grid {
                display: flex;
                flex-wrap: nowrap;
                justify-content: flex-start;
                gap: 1rem;
                overflow-x: auto;
                scroll-snap-type: x mandatory;
                -webkit-overflow-scrolling: touch;
                padding-bottom: 0.75rem;
            }
            .cert-item {
                min-width: 120px;
                height: 150px;
                padding: 1rem;
                scroll-snap-align: center;
            }
            .cert-item img {
                max-height: 80px;
            }
            .cert-grid::-webkit-scrollbar {
                height: 6px;
            }
            .cert-grid::-webkit-scrollbar-thumb {
                background: rgba(1,2,110,0.3);
                border-radius: 4px;
            }
            .share-feedback-section {
                padding: 3.5rem 1.5rem;
            }
            .share-feedback-container {
                padding: 1.75rem;
                width: 100%;
                max-width: 500px;
                margin-left: auto;
                margin-right: auto;
            }
            .feedback-form {
                gap: 1rem;
                width: 100%;
            }
            .feedback-submit {
                width: 100%;
            }
            .contact-hero {
                padding: 4rem 1.5rem;
                grid-template-columns: 1fr;
                text-align: center;
            }
            .contact-form-map {
                padding: 3.5rem 1.5rem;
            }
            .contact-form .form-row {
                grid-template-columns: 1fr;
                gap: 1rem;
            }
            .contact-info-section {
                padding: 3.5rem 1.5rem;
            }
            .contact-form-wrapper,
            .contact-map-wrapper {
                padding: 1.75rem;
            }
            .logo-hero {
                max-width: 70%;
                height: auto;
                top: 40px;
            }

            .hero-logo {
                max-width: 100%;
            }

            /* Order Page Mobile Styles */
            .order-section {
                padding: 2rem 1rem;
                margin-top: 60px;
                width: 100%;
                max-width: 100%;
                box-sizing: border-box;
            }
            .order-container {
                padding: 1.25rem;
                margin: 0 auto;
                width: 100%;
                max-width: 100%;
            }
            .order-container h1 {
                font-size: 1.75rem;
            }
            .order-intro {
                font-size: 0.95rem;
            }
            .form-section {
                padding: 1.25rem;
                width: 100%;
                max-width: 100%;
            }
            .form-section h2 {
                font-size: 1.3rem;
                margin-bottom: 1rem;
            }
            .form-row {
                grid-template-columns: 1fr;
                gap: 1rem;
            }
            .bottle-size-item {
                flex-direction: column;
                align-items: stretch;
                gap: 0.75rem;
                padding: 1rem;
                width: 100%;
                max-width: 100%;
                box-sizing: border-box;
            }
            .bottle-size-info {
                width: 100%;
            }
            .bottle-size-label {
                font-size: 1.1rem;
            }
            .bottle-price {
                font-size: 0.9rem;
            }
            .quantity-control {
                width: 100%;
                display: grid;
                grid-template-columns: auto 1fr auto;
                gap: 0.5rem;
                align-items: center;
                box-sizing: border-box;
            }
            .quantity-control label {
                font-size: 0.95rem;
                white-space: nowrap;
            }
            .quantity-input {
                width: 100%;
                max-width: 80px;
                padding: 0.6rem 0.5rem;
                font-size: 0.95rem;
            }
            .subtotal {
                font-size: 1rem;
                min-width: auto;
                white-space: nowrap;
                text-align: right;
            }
            .total-price-container {
                padding: 1rem;
                font-size: 1.1rem;
                margin-top: 1.5rem;
                flex-direction: column;
                align-items: flex-end;
                gap: 0.5rem;
            }
            .total-price-container strong {
                font-size: 1.3rem;
            }
            .total-price-container #totalPrice {
                font-size: 1.6rem;
            }
            .order-submit {
                width: 100%;
                min-width: auto;
                padding: 1rem 1.5rem;
                font-size: 1.1rem;
            }
            .order-submit i {
                font-size: 1.3rem;
            }
        }

        /* Coming Soon Pages */
        .coming-soon-container {
            min-height: 100vh;
            display: flex;
            justify-content: center;
            align-items: center;
            background: linear-gradient(135deg, #01026e 0%, #5254ca 50%, #0066cc 100%);
            padding: 2rem;
            animation: fadeIn 1s ease-in-out;
        }

        .coming-soon-content {
            text-align: center;
            max-width: 600px;
            padding: 3rem;
            background: rgba(255, 255, 255, 0.95);
            border-radius: 20px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
        }

        .coming-soon-title {
            color: #01026e;
            font-size: 2.5rem;
            margin-bottom: 1rem;
            font-weight: 700;
        }

        .coming-soon-message {
            color: #01026e;
            font-size: 1.8rem;
            margin-bottom: 1.5rem;
            font-weight: 600;
            letter-spacing: 2px;
        }

        .coming-soon-description {
            color: #555;
            font-size: 1.1rem;
            line-height: 1.6;
            margin-bottom: 2.5rem;
        }

        .coming-soon-button {
            display: inline-block;
            background: #01026e;
            color: #fff;
            padding: 1rem 2.5rem;
            border-radius: 50px;
            text-decoration: none;
            font-size: 1.1rem;
            font-weight: 600;
            transition: transform 0.3s, box-shadow 0.3s, background-color 0.3s;
            box-shadow: 0 5px 15px rgba(1, 2, 110, 0.3);
        }

        .coming-soon-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(1, 2, 110, 0.4);
            background-color: #1a3fd3;
        }

        @keyframes fadeIn {
            0% {
                opacity: 0;
            }
            100% {
                opacity: 1;
            }
        }

        /* Coming Soon Pages Mobile Responsive */
        @media (max-width: 768px) {
            .coming-soon-container {
                padding: 1rem;
            }

            .coming-soon-content {
                padding: 2rem 1.5rem;
            }

            .coming-soon-title {
                font-size: 2rem;
            }

            .coming-soon-message {
                font-size: 1.5rem;
            }

            .coming-soon-description {
                font-size: 1rem;
                margin-bottom: 2rem;
            }

            .coming-soon-button {
                padding: 0.9rem 2rem;
                font-size: 1rem;
                width: 100%;
                max-width: 300px;
            }
        }