        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            background: #F8FFFD;
            color: #0E2147;
            overflow-x: hidden;
            box-sizing: border-box;
        }

        html, body {
            height: 100%;
        }

        /* Navigation */
        .navbar {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(248, 255, 253, 0.95);
            backdrop-filter: blur(10px);
            padding: 1rem 2rem;
            box-shadow: 0 2px 20px rgba(86, 198, 169, 0.1);
            z-index: 1000;
            transition: all 0.3s ease;
        }

        .nav-container {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 1.8rem;
            font-weight: 800;
            color: #56C6A9;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .logo-icon {
            width: 40px;
            height: 40px;
            background: linear-gradient(135deg, #56C6A9, #0E2147);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.5rem;
        }

        .nav-links {
            display: flex;
            gap: 2rem;
            list-style: none;
        }

        .nav-links a {
            color: #0E2147;
            text-decoration: none;
            font-weight: 600;
            transition: color 0.3s ease;
            position: relative;
        }

        .nav-links a:hover {
            color: #56C6A9;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: #56C6A9;
            transition: width 0.3s ease;
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .auth-btn {
            padding: 0.7rem 1.8rem;
            background: linear-gradient(135deg, #56C6A9, #0E2147);
            color: white;
            border: none;
            border-radius: 25px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
        }

        .auth-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(86, 198, 169, 0.3);
        }

        .user-menu {
            position: relative;
        }

        .user-avatar {
            width: 45px;
            height: 45px;
            background: linear-gradient(135deg, #56C6A9, #0E2147);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: 700;
            cursor: pointer;
            font-size: 1.1rem;
        }

        .user-dropdown {
            position: absolute;
            top: 60px;
            right: 0;
            background: white;
            border-radius: 15px;
            box-shadow: 0 10px 40px rgba(86, 198, 169, 0.2);
            padding: 1rem;
            min-width: 200px;
            display: none;
            z-index: 1001;
        }

        .user-dropdown.show {
            display: block;
            animation: fadeInUp 0.3s ease;
        }

        .user-dropdown-header {
            padding: 0.8rem;
            border-bottom: 1px solid #CDEFE5;
            margin-bottom: 0.5rem;
        }

        .user-dropdown-name {
            font-weight: 700;
            color: #0E2147;
            font-size: 1.1rem;
        }

        .user-dropdown-email {
            font-size: 0.85rem;
            color: #56C6A9;
            margin-top: 0.2rem;
        }

        .user-dropdown-item {
            padding: 0.8rem;
            color: #0E2147;
            text-decoration: none;
            display: block;
            border-radius: 10px;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .user-dropdown-item:hover {
            background: #CDEFE5;
        }

        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            font-size: 1.5rem;
            color: #0E2147;
            cursor: pointer;
        }

        /* Hero Section */
        .hero {
            margin-top: 80px;
            padding: 6rem 2rem 4rem;
            background: linear-gradient(135deg, #F8FFFD 0%, #CDEFE5 50%, #F8FFFD 100%);
            position: relative;
            overflow: hidden;
        }

        .floating-shape {
            position: absolute;
            border-radius: 50%;
            opacity: 0.1;
            animation: float 6s ease-in-out infinite;
        }

        .shape-1 {
            width: 300px;
            height: 300px;
            background: #56C6A9;
            top: -100px;
            right: -100px;
            animation-delay: 0s;
        }

        .shape-2 {
            width: 200px;
            height: 200px;
            background: #0E2147;
            bottom: -50px;
            left: -50px;
            animation-delay: 2s;
        }

        @keyframes float {
            0%, 100% { transform: translate(0, 0) rotate(0deg); }
            50% { transform: translate(20px, 20px) rotate(180deg); }
        }

        .hero-container {
            max-width: 1400px;
            margin: 0 auto;
            text-align: center;
            position: relative;
            z-index: 1;
        }

        .hero h1 {
            font-size: 4rem;
            font-weight: 900;
            color: #0E2147;
            margin-bottom: 1rem;
            line-height: 1.2;
            animation: fadeInUp 0.8s ease;
        }

        .hero p {
            font-size: 1.3rem;
            color: #0E2147;
            margin-bottom: 2.5rem;
            opacity: 0.8;
            animation: fadeInUp 0.8s ease 0.2s backwards;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .hero-buttons {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
            animation: fadeInUp 0.8s ease 0.4s backwards;
        }

        .btn {
            padding: 1rem 2.5rem;
            border-radius: 50px;
            font-weight: 700;
            text-decoration: none;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            font-size: 1rem;
        }

        .btn-primary {
            background: linear-gradient(135deg, #56C6A9, #0E2147);
            color: white;
            box-shadow: 0 10px 30px rgba(86, 198, 169, 0.3);
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(86, 198, 169, 0.4);
        }

        .btn-secondary {
            background: white;
            color: #0E2147;
            border: 2px solid #56C6A9;
        }

        .btn-secondary:hover {
            background: #56C6A9;
            color: white;
            transform: translateY(-3px);
        }

        .search-container {
            max-width: 700px;
            margin: 3rem auto 0;
            position: relative;
            animation: fadeInUp 0.8s ease 0.6s backwards;
        }

        .search-box {
            display: flex;
            background: white;
            border-radius: 50px;
            overflow: hidden;
            box-shadow: 0 15px 50px rgba(86, 198, 169, 0.2);
        }

        .search-box input {
            flex: 1;
            padding: 1.2rem 2rem;
            border: none;
            outline: none;
            font-size: 1rem;
            color: #0E2147;
        }

        .search-box button {
            padding: 1.2rem 2.5rem;
            background: #56C6A9;
            color: white;
            border: none;
            font-weight: 700;
            cursor: pointer;
            transition: background 0.3s ease;
        }

        .search-box button:hover {
            background: #0E2147;
        }

        /* Brand Marquee */
        .marquee-section {
            padding: 3rem 0;
            background: white;
            overflow: hidden;
        }

        .marquee {
            display: flex;
            animation: scroll 30s linear infinite;
            width: fit-content;
        }

        .marquee-item {
            padding: 0 4rem;
            font-size: 1.5rem;
            font-weight: 700;
            color: #56C6A9;
            white-space: nowrap;
        }

        @keyframes scroll {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }

        /* Features Section */
        .features {
            padding: 5rem 2rem;
            background: #F8FFFD;
        }

        .section-title {
            text-align: center;
            font-size: 3rem;
            font-weight: 900;
            color: #0E2147;
            margin-bottom: 3rem;
        }

        .features-grid {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
        }

        .feature-card {
            background: white;
            padding: 2.5rem;
            border-radius: 20px;
            text-align: center;
            transition: all 0.4s ease;
            box-shadow: 0 10px 30px rgba(86, 198, 169, 0.1);
            opacity: 0;
            transform: translateY(30px);
        }

        .feature-card.visible {
            animation: fadeInUp 0.6s ease forwards;
        }

        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 50px rgba(86, 198, 169, 0.2);
        }

        .feature-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, #CDEFE5, #56C6A9);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            font-size: 2.5rem;
        }

        .feature-card h3 {
            font-size: 1.5rem;
            color: #0E2147;
            margin-bottom: 1rem;
        }

        .feature-card p {
            color: #0E2147;
            opacity: 0.7;
            line-height: 1.6;
        }

        /* Deals Section */
        .deals {
            padding: 5rem 2rem;
            background: linear-gradient(180deg, #F8FFFD 0%, #CDEFE5 100%);
        }

        .deals-grid {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
            gap: 2rem;
        }

        .deal-card {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(86, 198, 169, 0.15);
            transition: all 0.4s ease;
            opacity: 0;
            transform: translateY(30px);
        }

        .deal-card.visible {
            animation: fadeInUp 0.6s ease forwards;
        }

        .deal-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 50px rgba(86, 198, 169, 0.25);
        }

        .deal-image {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }

        .deal-content {
            padding: 1.5rem;
        }

        .deal-brand {
            font-weight: 700;
            color: #56C6A9;
            font-size: 0.9rem;
            margin-bottom: 0.5rem;
        }

        .deal-title {
            font-size: 1.3rem;
            font-weight: 700;
            color: #0E2147;
            margin-bottom: 1rem;
        }

        .deal-discount {
            display: inline-block;
            background: linear-gradient(135deg, #56C6A9, #0E2147);
            color: white;
            padding: 0.5rem 1rem;
            border-radius: 10px;
            font-weight: 700;
            margin-bottom: 1rem;
        }

        .deal-code {
            display: flex;
            gap: 0.5rem;
            margin-top: 1rem;
        }

        .code-display {
            flex: 1;
            padding: 0.8rem;
            background: #CDEFE5;
            border-radius: 10px;
            text-align: center;
            font-weight: 700;
            color: #0E2147;
            border: 2px dashed #56C6A9;
        }

        .copy-btn {
            padding: 0.8rem 1.5rem;
            background: #56C6A9;
            color: white;
            border: none;
            border-radius: 10px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .copy-btn:hover {
            background: #0E2147;
        }

        .copy-btn.copied {
            background: #0E2147;
        }

        /* Testimonials */
        .testimonials {
            padding: 5rem 2rem;
            background: white;
        }

        .testimonials-container {
            max-width: 1000px;
            margin: 0 auto;
            position: relative;
            overflow: hidden;
        }

        .testimonials-track {
            display: flex;
            transition: transform 0.5s ease;
        }

        .testimonial-card {
            min-width: 100%;
            padding: 3rem;
            text-align: center;
        }

        .testimonial-avatar {
            width: 100px;
            height: 100px;
            border-radius: 50%;
            margin: 0 auto 1.5rem;
            border: 5px solid #CDEFE5;
            object-fit: cover;
        }

        .testimonial-stars {
            color: #FFD700;
            font-size: 1.5rem;
            margin-bottom: 1rem;
        }

        .testimonial-text {
            font-size: 1.2rem;
            color: #0E2147;
            line-height: 1.8;
            margin-bottom: 1rem;
            font-style: italic;
        }

        .testimonial-author {
            font-weight: 700;
            color: #56C6A9;
            font-size: 1.1rem;
        }

        .testimonial-nav {
            display: flex;
            justify-content: center;
            gap: 1rem;
            margin-top: 2rem;
        }

        .testimonial-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: #CDEFE5;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .testimonial-dot.active {
            background: #56C6A9;
            width: 30px;
            border-radius: 6px;
        }

        /* Newsletter */
        .newsletter {
            padding: 5rem 2rem;
            background: linear-gradient(135deg, #56C6A9, #0E2147);
            text-align: center;
        }

        .newsletter-container {
            max-width: 700px;
            margin: 0 auto;
        }

        .newsletter h2 {
            font-size: 3rem;
            color: white;
            margin-bottom: 1rem;
        }

        .newsletter p {
            color: white;
            opacity: 0.9;
            margin-bottom: 2rem;
            font-size: 1.1rem;
        }

        .newsletter-form {
            display: flex;
            gap: 1rem;
            max-width: 500px;
            margin: 0 auto;
        }

        .newsletter-form input {
            flex: 1;
            padding: 1rem 1.5rem;
            border-radius: 50px;
            border: none;
            outline: none;
            font-size: 1rem;
        }

        .newsletter-form button {
            padding: 1rem 2rem;
            background: white;
            color: #0E2147;
            border: none;
            border-radius: 50px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .newsletter-form button:hover {
            transform: scale(1.05);
        }

        .success-message {
            margin-top: 1rem;
            color: white;
            font-weight: 600;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .success-message.show {
            opacity: 1;
        }

        /* Blog Section */
        .blog {
            padding: 5rem 2rem;
            background: #F8FFFD;
        }

        .blog-grid {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
        }

        .blog-card {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(86, 198, 169, 0.1);
            transition: all 0.4s ease;
            opacity: 0;
            transform: translateY(30px);
        }

        .blog-card.visible {
            animation: fadeInUp 0.6s ease forwards;
        }

        .blog-card:hover {
            transform: translateY(-10px) scale(1.02);
            box-shadow: 0 20px 50px rgba(86, 198, 169, 0.2);
        }

        .blog-image {
            width: 100%;
            height: 250px;
            object-fit: cover;
        }

        .blog-content {
            padding: 2rem;
        }

        .blog-category {
            display: inline-block;
            background: #CDEFE5;
            color: #0E2147;
            padding: 0.5rem 1rem;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }

        .blog-title {
            font-size: 1.5rem;
            font-weight: 700;
            color: #0E2147;
            margin-bottom: 1rem;
            line-height: 1.4;
        }

        .blog-excerpt {
            color: #0E2147;
            opacity: 0.7;
            line-height: 1.6;
            margin-bottom: 1.5rem;
        }

        .blog-link {
            color: #56C6A9;
            text-decoration: none;
            font-weight: 700;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            transition: gap 0.3s ease;
        }

        .blog-link:hover {
            gap: 1rem;
        }

        /* Footer */
        .footer {
            background: #0E2147;
            color: white;
            padding: 4rem 2rem 2rem;
        }

        .footer-container {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
            margin-bottom: 3rem;
        }

        .footer-section h3 {
            color: #56C6A9;
            font-size: 1.3rem;
            margin-bottom: 1.5rem;
        }

        .footer-logo {
            font-size: 2rem;
            font-weight: 900;
            color: #56C6A9;
            margin-bottom: 1rem;
        }

        .footer-tagline {
            opacity: 0.8;
            line-height: 1.6;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 0.8rem;
        }

        .footer-links a {
            color: white;
            text-decoration: none;
            opacity: 0.8;
            transition: all 0.3s ease;
            display: inline-block;
        }

        .footer-links a:hover {
            opacity: 1;
            color: #56C6A9;
            transform: translateX(5px);
        }

        .social-icons {
            display: flex;
            gap: 1rem;
            margin-top: 1rem;
        }

        .social-icon {
            width: 45px;
            height: 45px;
            background: rgba(86, 198, 169, 0.1);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #56C6A9;
            text-decoration: none;
            font-size: 1.2rem;
            transition: all 0.3s ease;
        }

        .social-icon:hover {
            background: #56C6A9;
            color: white;
            transform: translateY(-5px);
        }

        .footer-bottom {
            border-top: 1px solid rgba(86, 198, 169, 0.2);
            padding-top: 2rem;
            text-align: center;
            opacity: 0.7;
        }

        /* Modal Styles */
        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(14, 33, 71, 0.8);
            backdrop-filter: blur(5px);
            z-index: 2000;
            align-items: center;
            justify-content: center;
        }

        .modal.show {
            display: flex;
            animation: fadeIn 0.3s ease;
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        .modal-content {
            background: white;
            border-radius: 25px;
            padding: 3rem;
            max-width: 450px;
            width: 90%;
            position: relative;
            animation: slideUp 0.4s ease;
            max-height: 90%;
            overflow-y: auto;
        }

        @keyframes slideUp {
            from {
                opacity: 0;
                transform: translateY(50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .modal-close {
            position: absolute;
            top: 1.5rem;
            right: 1.5rem;
            background: none;
            border: none;
            font-size: 2rem;
            color: #0E2147;
            cursor: pointer;
            line-height: 1;
            transition: all 0.3s ease;
        }

        .modal-close:hover {
            color: #56C6A9;
            transform: rotate(90deg);
        }

        .modal-title {
            font-size: 2rem;
            font-weight: 900;
            color: #0E2147;
            margin-bottom: 0.5rem;
            text-align: center;
        }

        .modal-subtitle {
            color: #0E2147;
            opacity: 0.7;
            text-align: center;
            margin-bottom: 2rem;
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-label {
            display: block;
            font-weight: 600;
            color: #0E2147;
            margin-bottom: 0.5rem;
        }

        .form-input {
            width: 100%;
            padding: 1rem;
            border: 2px solid #CDEFE5;
            border-radius: 12px;
            font-size: 1rem;
            color: #0E2147;
            transition: all 0.3s ease;
            outline: none;
        }

        .form-input:focus {
            border-color: #56C6A9;
            box-shadow: 0 0 0 3px rgba(86, 198, 169, 0.1);
        }

        .form-submit {
            width: 100%;
            padding: 1.2rem;
            background: linear-gradient(135deg, #56C6A9, #0E2147);
            color: white;
            border: none;
            border-radius: 12px;
            font-weight: 700;
            font-size: 1.1rem;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .form-submit:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(86, 198, 169, 0.3);
        }

        .form-toggle {
            text-align: center;
            margin-top: 1.5rem;
            color: #0E2147;
        }

        .form-toggle a {
            color: #56C6A9;
            text-decoration: none;
            font-weight: 700;
            cursor: pointer;
        }

        .form-toggle a:hover {
            text-decoration: underline;
        }

        /* Content Pages */
        .content-page {
            display: none;
            padding: 6rem 2rem 4rem;
            margin-top: 80px;
            background: #F8FFFD;
            min-height: 100%;
        }

        .content-page.show {
            display: block;
        }

        .content-container {
            max-width: 900px;
            margin: 0 auto;
            background: white;
            padding: 3rem;
            border-radius: 25px;
            box-shadow: 0 10px 40px rgba(86, 198, 169, 0.1);
        }

        .content-header {
            margin-bottom: 2rem;
            padding-bottom: 1rem;
            border-bottom: 3px solid #CDEFE5;
        }

        .content-title {
            font-size: 2.5rem;
            font-weight: 900;
            color: #0E2147;
            margin-bottom: 0.5rem;
        }

        .content-date {
            color: #56C6A9;
            font-weight: 600;
        }

        .content-body h2 {
            font-size: 1.8rem;
            color: #0E2147;
            margin-top: 2rem;
            margin-bottom: 1rem;
            font-weight: 700;
        }

        .content-body h3 {
            font-size: 1.4rem;
            color: #0E2147;
            margin-top: 1.5rem;
            margin-bottom: 0.8rem;
            font-weight: 700;
        }

        .content-body p {
            color: #0E2147;
            line-height: 1.8;
            margin-bottom: 1.2rem;
            opacity: 0.9;
        }

        .content-body ul, .content-body ol {
            margin-left: 2rem;
            margin-bottom: 1.5rem;
        }

        .content-body li {
            color: #0E2147;
            line-height: 1.8;
            margin-bottom: 0.8rem;
            opacity: 0.9;
        }

        .back-btn {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 1rem 2rem;
            background: #56C6A9;
            color: white;
            text-decoration: none;
            border-radius: 12px;
            font-weight: 700;
            margin-top: 2rem;
            transition: all 0.3s ease;
        }

        .back-btn:hover {
            background: #0E2147;
            transform: translateX(-5px);
        }

        /* Responsive */
        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }

            .mobile-menu-btn {
                display: block;
            }

            .hero h1 {
                font-size: 2.5rem;
            }

            .hero p {
                font-size: 1.1rem;
            }

            .section-title {
                font-size: 2rem;
            }

            .newsletter h2 {
                font-size: 2rem;
            }

            .newsletter-form {
                flex-direction: column;
            }

            .features-grid,
            .deals-grid,
            .blog-grid {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 480px) {
            .hero h1 {
                font-size: 2rem;
            }

            .hero-buttons {
                flex-direction: column;
            }

            .btn {
                width: 100%;
            }
        }
