* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}
body {
    color: #333;
    line-height: 1.6;
    background-color: #f8f9fa;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

header {
    background-color: #2c3e50;
    color: white;
    padding: 20px 0;
}
.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}
.logo {
    font-size: 28px;
    font-weight: bold;
}
.logo span {
    color: #3498db;
}
.nav-links a {
    color: white;
    text-decoration: none;
    margin-left: 25px;
    font-size: 16px;
}
.nav-links a:hover {
    color: #3498db;
}

.hero {
    padding: 80px 0;
    background-color: white;
    text-align: center;
}
.hero h1 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #2c3e50;
}
.hero h1 span {
    color: #3498db;
}
.hero p {
    font-size: 18px;
    max-width: 800px;
    margin: 0 auto 30px;
    color: #555;
}
		
.hero-highlights {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 32px;
}

.highlight-tag {
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: var(--light-gray);
    padding: 8px 16px;
    border-radius: 6px;
    font-weight: 500;
    color: var(--primary);
    font-size: 14px;
}
.cta-buttons {
    margin-top: 30px;
}
.btn {
    display: inline-block;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    font-size: 16px;
    margin: 0 10px;
    transition: all 0.3s ease;
}
.btn-primary {
    background-color: #FF7D00;
    color: white;
}
.btn-primary:hover {
    background-color: #E67000;
}
.btn-secondary {
    background-color: #3498db;
    color: white;
}
.btn-secondary:hover {
    background-color: #2980b9;
}

.video-section {
    padding: 60px 0;
    background-color: #f1f1f1;
    text-align: center;
}
.video-section h2 {
    font-size: 28px;
    margin-bottom: 30px;
    color: #2c3e50;
}
.video-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    height: 0;
    overflow: hidden;
}
.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.features {
    padding: 80px 0;
    background-color: white;
}
.features h2 {
    text-align: center;
    font-size: 30px;
    margin-bottom: 50px;
    color: #2c3e50;
}
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}
.feature-card {
    padding: 30px;
    background-color: #f8f9fa;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
.feature-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #2c3e50;
}
.feature-card p {
    color: #555;
    font-size: 16px;
}

.faq {
    padding: 80px 0;
    background-color: #f1f1f1;
}
.faq h2 {
    text-align: center;
    font-size: 30px;
    margin-bottom: 50px;
    color: #2c3e50;
}
.faq-item {
    max-width: 800px;
    margin: 0 auto 20px;
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
.faq-item h3 {
    font-size: 18px;
    color: #2c3e50;
    margin-bottom: 10px;
}
.faq-item p {
    color: #555;
}

.testimonials {
    padding: 80px 0;
    background-color: white;
}
.testimonials h2 {
    text-align: center;
    font-size: 30px;
    margin-bottom: 50px;
    color: #2c3e50;
}
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}
.testimonial-card {
    padding: 30px;
    background-color: #f8f9fa;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: relative;
}
.testimonial-card .quote {
    font-size: 40px;
    color: #3498db;
    opacity: 0.2;
    position: absolute;
    top: 15px;
    left: 20px;
}
.testimonial-text {
    font-style: italic;
    color: #555;
    font-size: 16px;
    margin-bottom: 20px;
    padding-left: 15px;
    border-left: 3px solid #3498db;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}
.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #2c3e50;
}
.author-info h4 {
    font-size: 18px;
    color: #2c3e50;
    margin-bottom: 5px;
}
.author-info p {
    font-size: 14px;
    color: #777;
}

.download-buy {
    padding: 80px 0;
    background-color: #f1f1f1;
    text-align: center;
}
.download-buy h2 {
    font-size: 30px;
    margin-bottom: 30px;
    color: #2c3e50;
}
.price-tag {
    font-size: 36px;
    color: #e74c3c;
    font-weight: bold;
    margin-bottom: 20px;
}
.price-tag small {
    font-size: 18px;
    color: #555;
    font-weight: normal;
}
.download-options {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}
.download-card {
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    width: 250px;
    text-align: center;
}
.download-card h3 {
    font-size: 18px;
    margin-bottom: 15px;
}
.download-card a {
    display: inline-block;
    margin-top: 10px;
    color: #3498db;
    text-decoration: none;
    font-weight: bold;
}

footer {
    background-color: #2c3e50;
    color: white;
    padding: 40px 0;
    text-align: center;
}
footer p {
    margin-top: 20px;
    font-size: 14px;
    color: #bbb;
}

@media (max-width: 768px) {
    .hero h1 {
font-size: 28px;
    }
    .hero p {
font-size: 16px;
    }
    .features h2, .faq h2, .testimonials h2, .download-buy h2 {
font-size: 24px;
    }
    .header-content {
flex-direction: column;
text-align: center;
    }
    .nav-links {
margin-top: 20px;
    }
    .nav-links a {
margin: 0 10px;
    }
    .testimonial-author {
flex-direction: column;
text-align: center;
    }
}