
        :root {
            --primary-color: #223777;
--secondary-color: #000000;
            --accent-color: #4f46e5;
            --text-primary: #1f2937;
            --text-secondary: #6b7280;
            --bg-primary: #ffffff;
            --bg-secondary: #f9fafb;
}
        
        * {
            margin: 0;
padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Inter', sans-serif;
line-height: 1.6;
            color: var(--text-primary);
            background-color: var(--bg-primary);
        }
        
        .container {
            max-width: 1200px;
margin: 0 auto;
            padding: 0 20px;
        }
        
        .hero-section {
            background: linear-gradient(135deg, var(--primary-color) 0%, #1e3a8a 100%);
color: white;
            padding: 80px 0;
            text-align: center;
            position: relative;
            overflow: hidden;
}
        
        .hero-section::before {
            content: '';
position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><polygon fill="rgba(255,255,255,0.05)" points="0,0 1000,300 1000,1000 0,700"/></svg>');
            background-size: cover;
}
        
        .hero-content {
            position: relative;
z-index: 2;
        }
        
        .hero-title {
            font-size: 3.5rem;
font-weight: 700;
            margin-bottom: 1rem;
            background: linear-gradient(45deg, #ffffff, #e0e7ff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
}
        
        .hero-subtitle {
            font-size: 1.3rem;
margin-bottom: 2rem;
            opacity: 0.9;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
}
        
        .cta-button {
            display: inline-flex;
align-items: center;
            background: #ffffff;
            color: var(--primary-color);
            padding: 15px 30px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
transition: all 0.3s ease;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
        }
        
        .cta-button:hover {
            transform: translateY(-3px);
box-shadow: 0 15px 40px rgba(0,0,0,0.3);
            color: var(--primary-color);
            text-decoration: none;
        }
        
        .content-section {
            padding: 80px 0;
}
        
        .section-title {
            font-size: 2.5rem;
font-weight: 700;
            color: var(--primary-color);
            margin-bottom: 1rem;
            text-align: center;
        }
        
        .section-subtitle {
            font-size: 1.2rem;
color: var(--text-secondary);
            text-align: center;
            margin-bottom: 3rem;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
}
        
        .feature-grid {
            display: grid;
grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
            margin-bottom: 4rem;
        }
        
        .feature-card {
            background: white;
border-radius: 20px;
            padding: 2.5rem;
            box-shadow: 0 10px 50px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            border: 1px solid #e5e7eb;
}
        
        .feature-card:hover {
            transform: translateY(-10px);
box-shadow: 0 20px 70px rgba(34, 55, 119, 0.2);
        }
        
        .feature-icon {
            width: 80px;
height: 80px;
            background: linear-gradient(135deg, var(--primary-color), #4338ca);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            color: white;
            font-size: 2rem;
}
        
        .feature-title {
            font-size: 1.5rem;
font-weight: 600;
            color: var(--primary-color);
            margin-bottom: 1rem;
        }
        
        .feature-description {
            color: var(--text-secondary);
line-height: 1.7;
        }
        
        .stats-section {
            background: var(--bg-secondary);
padding: 60px 0;
            margin: 4rem 0;
        }
        
        .stats-grid {
            display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            text-align: center;
        }
        
        .stat-item {
            padding: 2rem;
}
        
        .stat-number {
            font-size: 3rem;
font-weight: 700;
            color: var(--primary-color);
            margin-bottom: 0.5rem;
        }
        
        .stat-label {
            font-size: 1.1rem;
color: var(--text-secondary);
            font-weight: 500;
        }
        
        .video-section {
            background: white;
border-radius: 20px;
            padding: 3rem;
            margin: 4rem 0;
            box-shadow: 0 10px 50px rgba(0,0,0,0.1);
            text-align: center;
}
        
        .video-container {
            position: relative;
padding-bottom: 56.25%;
            height: 0;
            overflow: hidden;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}
        
        .video-container iframe {
            position: absolute;
top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: none;
}
        
        .testimonial-section {
            background: var(--primary-color);
color: white;
            padding: 80px 0;
            text-align: center;
        }
        
        .testimonial-grid {
            display: grid;
grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }
        
        .testimonial-card {
            background: rgba(255,255,255,0.1);
backdrop-filter: blur(10px);
            border-radius: 20px;
            padding: 2.5rem;
            border: 1px solid rgba(255,255,255,0.2);
}
        
        .testimonial-text {
            font-size: 1.1rem;
line-height: 1.7;
            margin-bottom: 1.5rem;
            font-style: italic;
        }
        
        .testimonial-author {
            font-weight: 600;
font-size: 1.1rem;
        }
        
        .testimonial-role {
            opacity: 0.8;
font-size: 0.9rem;
        }
        
        .inquiry-section {
            background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
padding: 80px 0;
            text-align: center;
        }
        
        .inquiry-buttons {
            display: flex;
flex-wrap: wrap;
            justify-content: center;
            gap: 1rem;
            margin-top: 2rem;
        }
        
        .inquiry-btn {
            display: inline-flex;
align-items: center;
            padding: 15px 30px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s ease;
box-shadow: 0 5px 20px rgba(0,0,0,0.1);
        }
        
        .inquiry-btn.primary {
            background: var(--primary-color);
color: white;
        }
        
        .inquiry-btn.secondary {
            background: #25d366;
color: white;
        }
        
        .inquiry-btn:hover {
            transform: translateY(-3px);
box-shadow: 0 10px 30px rgba(0,0,0,0.2);
            text-decoration: none;
            color: white;
        }
        
        .faq-section {
            padding: 80px 0;
background: white;
        }
        
        .faq-item {
            background: #f8fafc;
border-radius: 15px;
            margin-bottom: 1rem;
            overflow: hidden;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
        
        .faq-question {
            padding: 1.5rem 2rem;
cursor: pointer;
            font-weight: 600;
            color: var(--primary-color);
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all 0.3s ease;
}
        
        .faq-question:hover {
            background: #e2e8f0;
}
        
        .faq-answer {
            padding: 0 2rem 1.5rem 2rem;
color: var(--text-secondary);
            line-height: 1.7;
            display: none;
        }
        
        .faq-item.active .faq-answer {
            display: block;
}
        
        .faq-item.active .faq-question .fas {
            transform: rotate(180deg);
}
        
        .internal-link {
            color: var(--primary-color);
text-decoration: none;
            font-weight: 600;
            border-bottom: 2px solid transparent;
            transition: all 0.3s ease;
}
        
        .internal-link:hover {
            border-bottom-color: var(--primary-color);
text-decoration: none;
        }
        
        .highlight-box {
            background: linear-gradient(135deg, #ddd6fe 0%, #c7d2fe 100%);
border-left: 5px solid var(--primary-color);
            padding: 1.5rem;
            border-radius: 10px;
            margin: 2rem 0;
}
        
        .pros-cons-grid {
            display: grid;
grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
            margin: 3rem 0;
        }
        
        .pros-card, .cons-card {
            padding: 2rem;
border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
        }
        
        .pros-card {
            background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
border: 1px solid #34d399;
        }
        
        .cons-card {
            background: linear-gradient(135deg, #fef2f2 0%, #fed7d7 100%);
border: 1px solid #f87171;
        }
        
        .list-item {
            display: flex;
align-items: flex-start;
            margin-bottom: 1rem;
        }
        
        .list-item i {
            margin-right: 0.5rem;
margin-top: 0.2rem;
        }
        
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.5rem;
}
            
            .hero-subtitle {
                font-size: 1.1rem;
}
            
            .section-title {
                font-size: 2rem;
}
            
            .feature-grid {
                grid-template-columns: 1fr;
}
            
            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
}
            
            .testimonial-grid {
                grid-template-columns: 1fr;
}
            
            .inquiry-buttons {
                flex-direction: column;
align-items: center;
            }
            
            .pros-cons-grid {
                grid-template-columns: 1fr;
}
            
            .container {
                padding: 0 15px;
}
            
            .feature-card, .testimonial-card {
                padding: 1.5rem;
}
        }
        
        @media (max-width: 480px) {
            .hero-title {
                font-size: 2rem;
}
            
            .stats-grid {
                grid-template-columns: 1fr;
}
            
            .stat-number {
                font-size: 2.5rem;
}
        }
    