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

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
            background: #e8e3db;
        }

        header {
            background: #e8e3db;
            padding: 1.5rem 0;
        }

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

        .nav-left, .nav-right {
            display: flex;
            align-items: center;
            gap: 2rem;
        }

        .nav-left a, .nav-right a {
            color: #333;
            text-decoration: none;
            font-size: 0.95rem;
            font-weight: 500;
            transition: color 0.3s ease;
        }

        .nav-left a:hover, .nav-right a:hover {
            color: #8b7355;
        }

        .logo {
            font-size: 2rem;
            font-weight: 1000;
            color: #333;
            font-family: 'Cinzel Decorative', serif;
            font-variant: small-caps;
            text-decoration: none;

        }

        .hero-section {
            height: 400px;
            border-radius: 50px;
            background: linear-gradient(135deg, #c5a87a 9%, #9b8278 50%, #d4a5a5 80%, #8b7355 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            margin: 2rem 3rem;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        }

        .hero-content {
            text-align: center;
            color: white;
            max-width: 800px;
            padding: 0 2rem;
        }

        .brand {
            color: #ffffff;
            font-size: 12px;
            font-weight: 500;
            letter-spacing: 2px;
            margin-bottom: 8px;
            text-transform: uppercase;
            opacity: 0.9;
        }

        .hero-content h1 {
            font-size: 3.5rem;
            margin-bottom: 1rem;
            text-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
            font-weight: 700;
            font-family: 'Montserrat', sans-serif;;
        }

        .hero-content p {
            font-size: 1.3rem;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
            font-weight: 400;
            opacity: 0.95;
            line-height: 1.6;
        }

        .pricing-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 5rem 3rem;
        }

        .toggle-section {
            text-align: center;
            margin-bottom: 4rem;
        }

        .billing-toggle {
            display: inline-flex;
            background: rgba(255, 255, 255, 0.6);
            padding: 6px;
            border-radius: 50px;
            gap: 4px;
        }

        .toggle-btn {
            padding: 12px 32px;
            border: none;
            background: transparent;
            color: #555;
            font-size: 15px;
            font-weight: 600;
            border-radius: 50px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .toggle-btn.active {
            background: linear-gradient(135deg, #8b7355 0%, #c5a87a 100%);
            color: white;
            box-shadow: 0 4px 15px rgba(139, 115, 85, 0.3);
        }

        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2.5rem;
            margin-bottom: 5rem;
        }

        .pricing-card {
            background: rgba(255, 255, 255, 0.6);
            backdrop-filter: blur(10px);
            border-radius: 30px;
            padding: 3rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            border: 2px solid transparent;
            transition: all 0.3s ease;
            display: flex;
            flex-direction: column;
        }

        .pricing-card:hover {
            transform: translateY(-10px);
            border-color: #d4a5a5;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
        }

        .pricing-card.featured {
            background: linear-gradient(135deg, rgba(139, 115, 85, 0.15) 0%, rgba(197, 168, 122, 0.15) 100%);
            border-color: #8b7355;
            transform: scale(1.05);
        }

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

        .plan-badge {
            display: inline-block;
            background: linear-gradient(135deg, #8b7355 0%, #c5a87a 100%);
            color: white;
            padding: 6px 16px;
            border-radius: 50px;
            font-size: 11px;
            font-weight: 600;
            letter-spacing: 1px;
            text-transform: uppercase;
            margin-bottom: 1.5rem;
        }

        .plan-name {
            font-size: 2rem;
            color: #2c2c2c;
            margin-bottom: 1rem;
            font-weight: 700;
            font-family: 'Poppins', sans-serif;
        }

        .plan-description {
            color: #555;
            font-size: 0.95rem;
            margin-bottom: 2rem;
            line-height: 1.6;
        }

        .plan-price {
            margin-bottom: 2rem;
        }

        .price-amount {
            font-size: 3.5rem;
            color: #2c2c2c;
            font-weight: 700;
            font-family: 'Poppins', sans-serif;
        }

        .price-period {
            color: #555;
            font-size: 1rem;
        }

        .plan-features {
            list-style: none;
            padding: 0;
            margin-bottom: 2.5rem;
            flex-grow: 1;
        }

        .plan-features li {
            display: flex;
            align-items: start;
            gap: 0.8rem;
            padding: 0.8rem 0;
            color: #555;
            font-size: 0.95rem;
        }

        .plan-features li:before {
            content: "✓";
            color: #8b7355;
            font-weight: bold;
            font-size: 1.2rem;
            flex-shrink: 0;
        }

        .plan-btn {
            width: 100%;
            padding: 14px;
            background: linear-gradient(135deg, #78614cba, #c5956b97);
            color: white;
            border: none;
            border-radius: 12px;
            font-size: 15px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
            text-decoration: none;
            display: block;
            text-align: center;
        }

        .plan-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
        }

        .plan-btn.secondary {
            background: white;
            color: #8b7355;
            border: 2px solid #8b7355;
        }

        .faq-section {
            max-width: 900px;
            margin: 5rem auto;
            padding: 0 2rem;
        }

        .faq-section h2 {
            font-size: 2.5rem;
            color: #2c2c2c;
            text-align: center;
            margin-bottom: 3rem;
            font-family: 'Poppins', sans-serif;
            font-weight: 700;
        }

        .faq-item {
            background: rgba(255, 255, 255, 0.6);
            border-radius: 20px;
            padding: 2rem;
            margin-bottom: 1.5rem;
            transition: all 0.3s ease;
        }

        .faq-item:hover {
            background: rgba(255, 255, 255, 0.8);
        }

        .faq-question {
            font-size: 1.2rem;
            color: #2c2c2c;
            font-weight: 600;
            margin-bottom: 1rem;
        }

        .faq-answer {
            color: #555;
            line-height: 1.7;
        }

        .cta-section {
            background: linear-gradient(135deg, #c5a87a 9%, #9b8278 50%, #d4a5a5 80%, #8b7355 100%);
            padding: 5rem 3rem;
            text-align: center;
            margin: 3rem;
            border-radius: 30px;
        }

        .cta-section h2 {
            color: white;
            font-size: 3rem;
            margin-bottom: 1rem;
            font-weight: 800;
            font-family: 'Poppins', sans-serif;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
        }

        .cta-section p {
            color: rgba(255, 255, 255, 0.95);
            font-size: 1.2rem;
            margin-bottom: 2.5rem;
            text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
        }

        .cta-btn {
            display: inline-block;
            background: white;
            color: #8b7355;
            padding: 1.2rem 3.5rem;
            border-radius: 20px;
            text-decoration: none;
            font-weight: 700;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
        }

        .cta-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
        }

        footer {
            background: #333;
            color: white;
            text-align: center;
            padding: 2rem;
        }

        footer p {
            margin: 0.5rem 0;
        }

        @media (max-width: 1100px) {
            .pricing-grid {
                grid-template-columns: 1fr;
                max-width: 500px;
                margin: 0 auto 5rem;
            }

            .pricing-card.featured {
                transform: scale(1);
            }

            .pricing-card.featured:hover {
                transform: translateY(-10px);
            }
        }

        @media (max-width: 968px) {
            .hero-section {
                height: 350px;
                margin: 1rem 1.5rem;
            }

            .hero-content h1 {
                font-size: 2.5rem;
            }

            .pricing-container {
                padding: 3rem 1.5rem;
            }

            nav {
                flex-direction: column;
                gap: 1rem;
                padding: 0 1.5rem;
            }

            .cta-section {
                margin: 1.5rem;
            }
        }

        @media (max-width: 640px) {
            .hero-content h1 {
                font-size: 2rem;
            }

            .pricing-card {
                padding: 2rem;
            }

            .price-amount {
                font-size: 2.5rem;
            }

            .toggle-btn {
                padding: 10px 20px;
                font-size: 13px;
            }
        }