* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

:root {
    --primary: #FF7A00; 
    --secondary: #2C3E50; 
    --light: #F8F9FA; 
    --dark: #1A2530; 
    --success: #27AE60; 
}

body {
    color: var(--secondary);
    line-height: 1.6;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

header {
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--secondary);
    text-decoration: none;
}

.logo span {
    color: var(--primary);
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: var(--secondary);
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--primary);
}

.btn {
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    display: inline-block;
}

.btn-primary {
    background: var(--primary);
    color: white;
    border: none;
}

.btn-primary:hover {
    background: #E66A00;
    transform: translateY(-2px);
}

.btn-secondary {
    background: white;
    color: var(--primary);
    border: 2px solid var(--primary);
    margin-left: 10px;
}

.btn-secondary:hover {
    background: var(--light);
    transform: translateY(-2px);
}

.hero {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--light) 0%, #FFF8F0 100%);
    text-align: center;
}

.hero h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: var(--dark);
}

.hero h1 span {
    color: var(--primary);
}

.hero p {
    font-size: 18px;
    max-width: 800px;
    margin: 0 auto 30px;
    color: var(--secondary);
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 5px;
}

.stat-text {
    font-size: 16px;
    color: var(--secondary);
}

.features {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 32px;
    margin-bottom: 60px;
    color: var(--dark);
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--primary);
    margin: 15px auto 0;
    border-radius: 2px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    background: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 40px;
    color: var(--primary);
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--dark);
}

.feature-card p {
    color: var(--secondary);
    margin-bottom: 20px;
}

.feature-card a {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
}

.supported {
    padding: 80px 0;
    background: var(--light);
}

.supported-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 30px;
}

@media (max-width: 768px) {
    .supported-grid {
grid-template-columns: 1fr;
    }
}

.supported-list h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--dark);
}

.supported-items {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.supported-item {
    background: white;
    padding: 10px 20px;
    border-radius: 25px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.testimonials {
    padding: 80px 0;
}

.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    position: relative;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 20px;
    color: var(--secondary);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.author-info h4 {
    color: var(--dark);
    font-size: 16px;
}

.author-info p {
    font-size: 14px;
    color: #7f8c8d;
}

.faq {
    padding: 80px 0;
    background: var(--light);
}

.faq-items {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.faq-question {
    padding: 20px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--dark);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    color: var(--secondary);
}

.faq-answer.show {
    padding: 0 20px 20px;
    max-height: 500px;
}

.cta {
    padding: 80px 0;
    text-align: center;
    background: linear-gradient(135deg, var(--primary) 0%, #FF9A44 100%);
    color: white;
}

.cta h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.cta p {
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto 30px;
}

.cta .btn {
    margin: 0 10px;
}

.btn-cta-primary {
    background: white;
    color: var(--primary);
}

.btn-cta-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

footer {
    background: var(--dark);
    color: #bdc3c7;
    padding: 40px 0;
    text-align: center;
}

.footer-nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
}

.footer-nav a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-nav a:hover {
    color: var(--primary);
}

.footer-copyright {
    font-size: 13px;
    color: #7f8c8d;
}

.video-section {
    padding: 80px 0;
    background: var(--light);
    text-align: center;
}

.video-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}



.video-caption {
    margin-top: 20px;
    font-size: 16px;
    color: var(--secondary);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}


@media (max-width: 768px) {
    .nav-links {
display: none;
    }

    .hero h1 {
font-size: 32px;
    }

    .section-title {
font-size: 28px;
    }

    .cta h2 {
font-size: 28px;
    }

    .footer-nav {
gap: 15px;
    }
}

.fixed-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 99;
    display: flex;
    gap: 10px;
}

@media (max-width: 576px) {
    .fixed-cta {
flex-direction: column;
    }
			
			.video-caption {
				font-size: 14px;
				padding: 0 20px;
			}

}