/* Base Styles */
:root {
    --primary-color: #ff7f40;
    --secondary-color: #1a2e4c;
    --light-bg: #f5f7fa;
    --dark-bg: #1a2e4c;
    --text-color: #333;
    --light-text: #fff;
    --gray-text: #666;
    --border-radius: 8px;
    --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

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

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

section {
    padding: 80px 0;
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: var(--border-radius);
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.btn.primary {
    background-color: var(--primary-color);
    color: var(--light-text);
}

.btn.primary:hover {
    background-color: #e66d30;
}

.btn.secondary {
    background-color: transparent;
    color: var(--secondary-color);
    border: 1px solid var(--secondary-color);
}

.btn.secondary:hover {
    background-color: var(--secondary-color);
    color: var(--light-text);
}

/* Header Styles */
header {
    background-color: var(--dark-bg);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--box-shadow);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 40px;
}

nav ul {
    display: flex;
}

nav ul li {
    margin-left: 25px;
}

nav ul li a {
    font-weight: 500;
    color: var(--light-text);
}

nav ul li a:hover {
    color: var(--primary-color);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--light-bg);
    margin: 3px 0;
    border-radius: 3px;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    background-color: var(--secondary-color);
    color: var(--light-text);
    padding: 0;
}

.hero-content {
    display: flex;
    align-items: stretch;
}

.hero-image {
    flex: 1;
    overflow: hidden;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-text {
    flex: 1;
    padding: 60px 40px;
}

.hero-text h1 {
    margin-bottom: 1.5rem;
}

.hero-text .btn {
    margin-top: 1.5rem;
}

/* About Section */
.about {
    background-color: var(--light-bg);
}

.about-content {
    display: flex;
    gap: 40px;
    align-items: center;
}

.about-text {
    flex: 3;
}

.about-image {
    flex: 2;
}

/* Features Section */
.features {
    padding: 80px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    background-color: var(--light-bg);
    padding: 30px;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow);
}

/* Stats Section */
.stats {
    background-color: var(--dark-bg);
    color: var(--light-text);
    padding: 60px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    text-align: center;
}

.stat-item h3 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 10px;
}

/* Growth Section */
.growth {
    padding: 80px 0;
}

.growth-content {
    display: flex;
    gap: 40px;
    align-items: center;
}

.growth-image {
    flex: 1;
}

.growth-text {
    flex: 1;
}

/* Pricing Section */
.pricing {
    background-color: var(--dark-bg);
    color: var(--light-text);
    padding: 80px 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.pricing-card {
    background-color: white;
    color: var(--text-color);
    padding: 30px;
    border-radius: var(--border-radius);
    display: flex;
    flex-direction: column;
}

.pricing-card h3 {
    color: var(--secondary-color);
}

.pricing-card ul {
    margin: 20px 0;
    flex-grow: 1;
}

.pricing-card ul li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 25px;
}

.pricing-card ul li:before {
    content: '•';
    color: var(--primary-color);
    position: absolute;
    left: 0;
}

.price {
    margin-top: auto;
    background-color: var(--primary-color);
    padding: 15px;
    border-radius: var(--border-radius);
    color: var(--light-text);
    text-align: center;
    font-weight: 600;
}

/* Courses Section */
.courses {
    padding: 80px 0;
}

.courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.course-card {
    background-color: var(--light-bg);
    padding: 30px;
    border-radius: var(--border-radius);
    height: 100%;
}

.course-card h3 {
    color: var(--secondary-color);
}

/* FAQ Section */
.faq {
    background-color: var(--light-bg);
    padding: 80px 0;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.faq-item {
    background-color: white;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.faq-item h3 {
    color: var(--secondary-color);
}

/* Contact Form Section */
.contact-form {
    padding: 80px 0;
    background-color: var(--dark-bg);
    color: var(--light-text);
}

form {
    max-width: 600px;
    margin: 40px auto 0;
}

.form-group {
    margin-bottom: 20px;
}

input, textarea {
    width: 100%;
    padding: 12px 15px;
    border: none;
    border-radius: var(--border-radius);
    font-family: 'Poppins', sans-serif;
}

textarea {
    min-height: 150px;
    resize: vertical;
}

/* Footer */
footer {
    background-color: var(--dark-bg);
    color: var(--light-text);
    padding-top: 60px;
}

footer .container {
    display: flex;
    gap: 40px;
}

.contact-info {
    flex: 1;
}

.contact-image {
    flex: 1;
}

.contact-details p {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.contact-details i {
    margin-right: 10px;
    color: var(--primary-color);
}

.footer-bottom {
    background-color: rgba(0, 0, 0, 0.2);
    padding: 20px 0;
    margin-top: 60px;
}

.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-links a {
    margin-right: 20px;
}

.footer-links a:hover {
    color: var(--primary-color);
}

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--dark-bg);
    color: var(--light-text);
    padding: 20px;
    z-index: 9999;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    display: none;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}

.cookie-content h3 {
    margin-bottom: 10px;
}

.cookie-content a {
    color: var(--primary-color);
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

/* Responsive Styles */
@media (max-width: 992px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .hero-content {
        flex-direction: column;
    }
    
    .hero-image {
        height: 300px;
    }
    
    .about-content,
    .growth-content,
    footer .container {
        flex-direction: column;
    }
    
    .about-image,
    .growth-image {
        order: -1;
        margin-bottom: 30px;
    }
    
    section {
        padding: 60px 0;
    }
}

@media (max-width: 768px) {
    nav ul {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .features-grid,
    .pricing-grid,
    .courses-grid,
    .faq-grid,
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom .container {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links {
        margin-bottom: 15px;
    }
    
    .cookie-buttons {
        flex-direction: column;
    }
}

@media (max-width: 576px) {
    h1 {
        font-size: 1.8rem;
    }
    
    h2 {
        font-size: 1.6rem;
    }
    
    h3 {
        font-size: 1.3rem;
    }
    
    .hero-text {
        padding: 40px 20px;
    }
    
    .feature-card, 
    .pricing-card, 
    .course-card, 
    .faq-item {
        padding: 20px;
    }
    
    section {
        padding: 40px 0;
    }
}

/* Mobile Menu */
.nav-active {
    display: flex !important;
    flex-direction: column;
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    background-color: var(--dark-bg);
    padding: 20px;
    box-shadow: var(--box-shadow);
}

.nav-active li {
    margin: 10px 0;
}

html {
    scroll-behavior: smooth;
}

footer a {
    color: var(--light-text);
}

.thank-section {
    background: var(--dark-bg);
    color: var(--light-text);
}