    
        :root {
            --primary: #2962FF;
            --primary-dark: #0039CB;
            --secondary: #00C853;
            --dark: #263238;
            --light: #ECEFF1;
            --gray: #607D8B;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Roboto', sans-serif;
            color: var(--dark);
            line-height: 1.6;
            background-color: #f5f7fa;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Header */
        header {
            background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('images/1-forex-broker.jpg');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 20px 0;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        
        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }
        
        .logo {
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
            font-size: 24px;
            color: white;
            text-decoration: none;
        }
        
        .nav-links a {
            color: white;
            text-decoration: none;
            margin-left: 30px;
            font-weight: 500;
            transition: opacity 0.3s;
        }
        
        .nav-links a:hover {
            opacity: 0.8;
        }
        
        /* Hero Section */
        .hero {
            flex: 1;
            display: flex;
            align-items: center;
            text-align: center;
            padding: 60px 0;
        }
        
        .hero-content {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .hero h1 {
            font-family: 'Montserrat', sans-serif;
            font-size: 48px;
            margin-bottom: 20px;
            line-height: 1.2;
        }
        
        .hero p {
            font-size: 20px;
            margin-bottom: 40px;
            opacity: 0.9;
        }
        
        .btn {
            display: inline-block;
            background-color: var(--secondary);
            color: white;
            padding: 15px 40px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 500;
            font-size: 18px;
            transition: all 0.3s;
            border: none;
            cursor: pointer;
        }
        
        .btn:hover {
            background-color: #00E676;
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }
        
        /* Features Section */
        .features {
            padding: 100px 0;
            background-color: white;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 60px;
        }
        
        .section-title h2 {
            font-family: 'Montserrat', sans-serif;
            font-size: 36px;
            color: var(--dark);
            margin-bottom: 15px;
        }
        
        .section-title p {
            color: var(--gray);
            max-width: 700px;
            margin: 0 auto;
        }
        
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
        }
        
        .feature-card {
            background-color: var(--light);
            border-radius: 10px;
            padding: 30px;
            transition: transform 0.3s;
        }
        
        .feature-card:hover {
            transform: translateY(-10px);
        }
        
        .feature-icon {
            font-size: 40px;
            margin-bottom: 20px;
            color: var(--primary);
        }
        
        .feature-card h3 {
            font-family: 'Montserrat', sans-serif;
            margin-bottom: 15px;
            font-size: 22px;
        }
        
        /* How It Works */
        .how-it-works {
            padding: 100px 0;
            background: linear-gradient(rgba(40, 42, 46, 0.9), rgba(40, 42, 46, 0.9)), url('images/2-forex-broker.jpg');
            background-size: cover;
            background-position: center;
            color: white;
        }
        
        .steps {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 30px;
            margin-top: 50px;
        }
        
        .step {
            flex: 1;
            min-width: 250px;
            max-width: 300px;
            text-align: center;
            padding: 30px;
            background-color: rgba(255, 255, 255, 0.05);
            border-radius: 10px;
            backdrop-filter: blur(5px);
            border: 1px solid rgba(212, 175, 55, 0.3);
        }
        
        .step-number {
            display: inline-block;
            width: 50px;
            height: 50px;
            background-color: #D4AF37;
            color: #282a2e;
            border-radius: 50%;
            line-height: 50px;
            font-weight: bold;
            margin-bottom: 20px;
        }
        
        .step h3 {
            margin-bottom: 15px;
            font-family: 'Montserrat', sans-serif;
        }
        
        /* Pricing Section */
        .pricing {
            padding: 100px 0;
            background-color: #f5f7fa;
        }
        
        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }
        
        .pricing-card {
            background-color: white;
            border-radius: 10px;
            padding: 40px 30px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            text-align: center;
            transition: transform 0.3s;
        }
        
        .pricing-card:hover {
            transform: translateY(-10px);
        }
        
        .pricing-card.featured {
            border: 2px solid var(--secondary);
            position: relative;
        }
        
        .pricing-card.featured::before {
            content: "спреды от 0 пунктов";
            position: absolute;
            top: -12px;
            right: 20px;
            background-color: var(--secondary);
            color: white;
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 14px;
            font-weight: 500;
        }
        
        .pricing-card h3 {
            font-family: 'Montserrat', sans-serif;
            font-size: 24px;
            margin-bottom: 20px;
            color: var(--dark);
        }
        
        .price {
            font-size: 36px;
            font-weight: 700;
            margin-bottom: 20px;
            color: var(--primary);
        }
        
        .price span {
            font-size: 16px;
            font-weight: 400;
            color: var(--gray);
        }
        
        .pricing-features {
            margin-bottom: 30px;
        }
        
        .pricing-features li {
            margin-bottom: 10px;
            color: var(--gray);
        }
        
        /* FAQ Section */
        .faq {
            padding: 100px 0;
            background-color: white;
        }
        
        .faq-container {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .faq-item {
            margin-bottom: 20px;
            border: 1px solid #e0e0e0;
            border-radius: 8px;
            overflow: hidden;
        }
        
        .faq-question {
            padding: 20px;
            background-color: var(--light);
            font-family: 'Montserrat', sans-serif;
            font-weight: 600;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .faq-answer {
            padding: 0 20px;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease-out, padding 0.3s ease;
        }
        
        .faq-answer.active {
            padding: 20px;
            max-height: 500px;
        }
        
        /* CTA Section */
        .cta {
            padding: 100px 0;
            text-align: center;
            background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('images/2-forex-broker.jpg');
            background-size: cover;
            background-position: center;
            color: white;
        }
        
        .cta h2 {
            font-family: 'Montserrat', sans-serif;
            font-size: 36px;
            margin-bottom: 20px;
        }
        
        .cta p {
            max-width: 700px;
            margin: 0 auto 40px;
            opacity: 0.9;
            font-size: 18px;
        }
        
        /* Footer */
        footer {
            background-color: var(--dark);
            color: white;
            padding: 50px 0 20px;
        }
        
        .footer-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 30px;
        }
        
        .footer-logo {
            font-family: 'Montserrat', sans-serif;
            font-size: 24px;
            font-weight: 700;
        }
        
        .footer-links a {
            color: white;
            text-decoration: none;
            margin-left: 20px;
            transition: opacity 0.3s;
        }
        
        .footer-links a:hover {
            opacity: 0.8;
        }
        
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: var(--gray);
            font-size: 14px;
        }
        
        /* Login Button */
        .login-btn {
            background-color: transparent;
            border: 1px solid white;
            color: white;
            padding: 8px 20px;
            border-radius: 30px;
            margin-left: 30px;
            transition: all 0.3s;
        }
        
        .login-btn:hover {
            background-color: rgba(255, 255, 255, 0.1);
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }
            
            .hero h1 {
                font-size: 36px;
            }
            
            .hero p {
                font-size: 18px;
            }
            
            .section-title h2 {
                font-size: 30px;
            }
            
            .cta h2 {
                font-size: 30px;
            }
            
            .footer-content {
                flex-direction: column;
                text-align: center;
            }
            
            .footer-links {
                margin-top: 20px;
            }
            
            .footer-links a {
                margin: 0 10px;
            }
        }
        
        .how-it-works .section-title h2 {
            color: #ffffff;
            text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
        }

        .how-it-works .section-title p {
            color: #f5f5f5;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
        }
        
        .disclaimer {
            margin: 30px 0;
            padding: 20px;
            background-color: rgba(255, 255, 255, 0.05);
            border-radius: 5px;
            font-size: 12px;
            line-height: 1.5;
            color: rgba(255, 255, 255, 0.7);
        }

        .disclaimer p {
            margin-bottom: 0;
        }

        @media (max-width: 768px) {
            .disclaimer {
                font-size: 11px;
                padding: 15px;
            }
        }
  