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

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

        /* Header Styles */
        .header {
            background: #2383a0;
            padding: 1rem 0;
            position: relative;
            z-index: 1000;
        }

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

        .logo {
            
            color: white;
            padding: 0.8rem 1.5rem;
            font-weight: bold;
            font-size: 1.1rem;
            letter-spacing: 1px;
        }

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

        .nav-links a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            transition: opacity 0.3s ease;
        }

        .nav-links a:hover,
        .nav-links a.active {
            opacity: 0.8;
        }

        .start-btn {
            background: #ff8c42;
            color: white;
            padding: 0.8rem 1.5rem;
            border: none;
            border-radius: 25px;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            text-decoration: none;
            display: inline-block;
        }

        .start-btn:hover {
            background: #ff7a2b;
            transform: translateY(-2px);
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, #4fb3b3 0%, #3a9999 100%);
            min-height: 60vh;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(ellipse at center, rgba(255,255,255,0.1) 0%, transparent 70%);
            pointer-events: none;
        }

        .hero::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 100px;
            background: #f8f9fa;
            border-radius: 50% 50% 0 0 / 100% 100% 0 0;
        }

        .hero-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 2rem 2rem;
            position: relative;
            z-index: 2;
            text-align: left;
        }

        .hero h1 {
            font-size: 4rem;
            font-weight: 700;
            color: white;
            margin-bottom: 1rem;
            line-height: 1.1;
        }

        .hero-subtitle {
            font-size: 1.3rem;
            color: rgba(255, 255, 255, 0.9);
            font-style: italic;
        }

        /* Membership Section */
        .membership-section {
            padding: 5rem 0;
            background: #f8f9fa;
        }

        .section-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .membership-header {
            margin-bottom: 2rem;
        }

        .membership-label {
            font-size: 1.1rem;
            color: #666;
            margin-bottom: 0.5rem;
        }

        .membership-title {
            font-size: 3rem;
            font-weight: 700;
            color: #333;
            margin-bottom: 1rem;
            position: relative;
        }

        .membership-title::before {
            content: '';
            position: absolute;
            left: 0;
            bottom: -10px;
            width: 60px;
            height: 4px;
            background: #ff8c42;
        }

        .membership-description {
            font-size: 1.1rem;
            color: #666;
            max-width: 800px;
            line-height: 1.6;
            margin-top: 1.5rem;
        }

        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .pricing-card {
            background: white;
            border-radius: 15px;
            padding: 2.5rem;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
            position: relative;
            text-align: center;
        }

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

        .pricing-card.featured {
            background: linear-gradient(135deg, #4fb3b3 0%, #3a9999 100%);
            color: white;
            transform: scale(1.05);
        }

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

        .plan-name {
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 1rem;
            color: #333;
        }

        .pricing-card.featured .plan-name {
            color: white;
        }

        .price {
            display: flex;
            align-items: baseline;
            justify-content: center;
            margin-bottom: 1.5rem;
        }

        .currency {
            font-size: 2rem;
            font-weight: 700;
        }

        .amount {
            font-size: 3.5rem;
            font-weight: 700;
            margin: 0 0.5rem;
        }

        .period {
            font-size: 1.2rem;
            color: #666;
        }

        .pricing-card.featured .period {
            color: rgba(255,255,255,0.8);
        }

        .price-note {
            color: #ff8c42;
            font-weight: 600;
            margin-bottom: 2rem;
            text-decoration: line-through;
        }

        .features-list {
            list-style: none;
            text-align: left;
            margin-bottom: 2rem;
        }

        .features-list li {
            padding: 0.5rem 0;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .features-list li::before {
            content: '✓';
            color: #4fb3b3;
            font-weight: bold;
            font-size: 1.2rem;
        }

        .pricing-card.featured .features-list li::before {
            color: white;
        }

        .features-list li.disabled {
            color: #999;
        }

        .features-list li.disabled::before {
            content: '✗';
            color: #999;
        }

        .purchase-btn {
            background: #ff8c42;
            color: white;
            padding: 1rem 2rem;
            border: none;
            border-radius: 25px;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            width: 100%;
            font-size: 1rem;
        }

        .purchase-btn:hover {
            background: #ff7a2b;
            transform: translateY(-2px);
        }

        /* FAQ Section */
        .faq-section {
            padding: 5rem 0;
            background: white;
        }

        .faq-header {
            margin-bottom: 3rem;
        }

        .faq-label {
            font-size: 1.1rem;
            color: #666;
            margin-bottom: 0.5rem;
        }

        .faq-title {
            font-size: 3rem;
            font-weight: 700;
            color: #333;
            margin-bottom: 1rem;
        }

        .faq-description {
            font-size: 1.1rem;
            color: #666;
            max-width: 600px;
            line-height: 1.6;
        }

        .faq-container {
            display: grid;
            grid-template-columns: 1fr 2fr;
            gap: 4rem;
            align-items: start;
        }

        .faq-list {
            max-width: 800px;
        }

        .faq-item {
            border: 1px solid #e0e0e0;
            border-radius: 10px;
            margin-bottom: 1rem;
            overflow: hidden;
        }

        .faq-question {
            background: #f8f9fa;
            padding: 1.5rem;
            cursor: pointer;
            font-weight: 600;
            font-size: 1.1rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: background 0.3s ease;
        }

        .faq-question:hover {
            background: #e9ecef;
        }

        .faq-question.active {
            background: #4fb3b3;
            color: white;
        }

        .faq-arrow {
            font-size: 1.2rem;
            transition: transform 0.3s ease;
        }

        .faq-question.active .faq-arrow {
            transform: rotate(180deg);
        }

        .faq-answer {
            padding: 0 1.5rem;
            max-height: 0;
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .faq-answer.active {
            padding: 1.5rem;
            max-height: 200px;
        }

        .faq-answer p {
            color: #666;
            line-height: 1.6;
        }

        /* Newsletter Section */
        .newsletter-section {
            background: white;
            padding: 4rem 0;
            text-align: center;
        }

        .newsletter-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: #333;
            margin-bottom: 1rem;
        }

        .newsletter-subtitle {
            font-size: 1.1rem;
            color: #666;
            margin-bottom: 2rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .newsletter-form {
            display: flex;
            max-width: 500px;
            margin: 0 auto;
            gap: 0;
            border-radius: 25px;
            overflow: hidden;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }

        .newsletter-input {
            flex: 1;
            padding: 1rem 1.5rem;
            border: none;
            font-size: 1rem;
            outline: none;
            background: #f8f9fa;
        }

        .newsletter-btn {
            background: #ff8c42;
            color: white;
            padding: 1rem 2rem;
            border: none;
            font-weight: bold;
            cursor: pointer;
            transition: background 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .newsletter-btn:hover {
            background: #ff7a2b;
        }

        /* Footer Section */
        .footer {
            background: #000;
            color: white;
            padding: 3rem 0 1rem;
        }

        .footer-content {
            display: grid;
            grid-template-columns: 1fr 2fr;
            gap: 3rem;
            margin-bottom: 2rem;
        }

        .footer-logo-section {
            max-width: 400px;
        }

        .footer-logo {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1.5rem;
        }

        .logo-mark {
            background: white;
            color: black;
            padding: 0.8rem;
            font-weight: bold;
            font-size: 1.2rem;
            border-radius: 5px;
        }

        .footer-logo span {
            font-weight: bold;
            font-size: 1.1rem;
        }

        .footer-logo-section p {
            color: #ccc;
            line-height: 1.6;
            margin-bottom: 1.5rem;
        }

        .social-links {
            display: flex;
            gap: 1rem;
        }

        .social-links a {
            width: 45px;
            height: 45px;
            background: #333;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            text-decoration: none;
            transition: all 0.3s ease;
            color: white;
        }

        .social-links a:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        }

        .social-facebook:hover {
            background: #1877f2;
        }

        .social-twitter:hover {
            background: #1da1f2;
        }

        .social-linkedin:hover {
            background: #0077b5;
        }

        .social-youtube:hover {
            background: #ff0000;
        }

        .footer-links {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
        }

        .footer-column h3 {
            color: white;
            margin-bottom: 1rem;
            font-size: 1.1rem;
        }

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

        .footer-column ul li {
            margin-bottom: 0.5rem;
        }

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

        .footer-column ul li a:hover {
            color: #ff8c42;
        }

        .contact-info h4 {
            color: white;
            margin: 1rem 0 0.5rem 0;
            font-size: 0.9rem;
        }

        .contact-info p {
            color: #ccc;
            margin: 0;
            line-height: 1.5;
        }

        .footer-bottom {
            border-top: 1px solid #333;
            padding-top: 1rem;
        }

        .footer-bottom-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            color: #666;
            font-size: 0.9rem;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .nav-container {
                flex-direction: column;
                gap: 1rem;
            }

            .nav-links {
                gap: 1rem;
            }

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

            .hero-subtitle {
                font-size: 1.1rem;
            }

            .membership-title, .faq-title {
                font-size: 2rem;
            }

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

            .newsletter-form {
                flex-direction: column;
                border-radius: 0;
            }

            .newsletter-input,
            .newsletter-btn {
                border-radius: 25px;
            }

            .footer-content {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .footer-links {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .footer-bottom-content {
                flex-direction: column;
                gap: 0.5rem;
                text-align: center;
            }

            .pricing-grid {
                grid-template-columns: 1fr;
            }

            .faq-container {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .pricing-card.featured {
                transform: none;
            }

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