/* Global Styles */
:root {
    --color-bg: #F3F0EA;
    --color-accent1: #4ECDC4;
    --color-accent2: #FF6B6B;
    --color-text: #333333;
    --color-light: #FFFFFF;
    --color-border: #CCCCCC;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --radius: 5px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    color: var(--color-text);
    background-color: var(--color-bg);
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
}

a {
    color: var(--color-accent1);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--color-accent2);
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

section {
    padding: 4rem 0;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.section-title:after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: var(--color-accent2);
    margin: 15px auto 0;
    border-radius: 2px;
}

.btn {
    display: inline-block;
    background-color: var(--color-accent2);
    color: var(--color-light);
    padding: 12px 24px;
    border-radius: var(--radius);
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background-color: #e55c5c;
    color: var(--color-light);
}

.btn-secondary {
    background-color: var(--color-accent1);
}

.btn-secondary:hover {
    background-color: #3dbdb5;
}

/* Header Styles */
.site-header {
    background-color: var(--color-light);
    box-shadow: var(--shadow);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo {
    width: 50px;
    margin-right: 10px;
}

.site-title {
    font-size: 1.8rem;
    margin-bottom: 0;
}

.main-nav ul {
    display: flex;
    list-style: none;
}

.main-nav li {
    margin-left: 2rem;
}

.main-nav a {
    color: var(--color-text);
    font-weight: 600;
}

.main-nav a:hover {
    color: var(--color-accent2);
}

.cta-button {
    background-color: var(--color-accent2);
    color: var(--color-light) !important;
    padding: 8px 16px;
    border-radius: var(--radius);
}

.cta-button:hover {
    background-color: #e55c5c;
}

/* Hero Section */
.hero {
    padding: 15rem 0;
    display: flex;
    align-items: center;
    background-color: var(--color-light);
}

.hero-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.hero-text {
    flex: 1 1 500px;
    padding-right: 2rem;
}

.hero-image {
    flex: 1 1 400px;
}

.hero h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.hero p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

/* About Course Section */
.about-course {
    background-color: var(--color-bg);
}

.course-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.feature {
    flex: 1 1 300px;
    background-color: var(--color-light);
    padding: 2rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    text-align: center;
}

.feature-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: var(--radius);
    margin-bottom: 1rem;
}

.feature h3 {
    color: var(--color-accent1);
}

/* Services Section */
.services {
    background-color: var(--color-light);
}

.service-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

.service-card {
    flex: 1 1 300px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.service-card h3 {
    color: var(--color-accent2);
}

.price {
    font-size: 1.8rem;
    font-weight: 700;
    margin: 1rem 0;
}

/* Testimonials Section */
.testimonials {
    background-color: var(--color-bg);
}

.testimonial-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

.testimonial-card {
    flex: 1 1 300px;
    background-color: var(--color-light);
    border-radius: var(--radius);
    padding: 2rem;
    box-shadow: var(--shadow);
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 1rem;
}

.testimonial-author {
    font-weight: 700;
    color: var(--color-accent1);
}

/* Order Form Section */
.order-form-section {
    background-color: var(--color-light);
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 2rem;
    background-color: var(--color-light);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border: 1px solid var(--color-border);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.form-control {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    font-family: 'Open Sans', sans-serif;
    background-color: var(--color-light);
}

.form-check {
    margin-bottom: 1rem;
}

.form-check label {
    display: inline-block;
    margin-left: 0.5rem;
}

.error-message {
    color: var(--color-accent2);
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

/* FAQ Section */
.faq {
    background-color: var(--color-bg);
}

.faq-item {
    margin-bottom: 1.5rem;
    background-color: var(--color-light);
    border-radius: var(--radius);
    padding: 1.5rem;
    box-shadow: var(--shadow);
}

.faq-question {
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--color-accent1);
}

/* Footer Styles */
.site-footer {
    background-color: var(--color-text);
    color: var(--color-light);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section {
    flex: 1 1 250px;
}

.footer-section h3 {
    color: var(--color-accent2);
    margin-bottom: 1.5rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: var(--color-light);
}

.footer-section a:hover {
    color: var(--color-accent2);
}

.copyright {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
}

/* Cookie Popup */
.cookie-popup {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--color-light);
    padding: 1rem;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 9999;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.cookie-popup p {
    margin-bottom: 0;
    flex: 1;
}

.cookie-popup form {
    flex-shrink: 0;
}
.thank-you-content{
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}
.cookie-popup button {
    background-color: var(--color-accent1);
    color: var(--color-light);
    border: none;
    padding: 8px 16px;
    border-radius: var(--radius);
    cursor: pointer;
}

.cookie-popup button:hover {
    background-color: #3dbdb5;
}

/* Thank You Page */
.thank-you {
    text-align: center;
    padding: 5rem 0;
}

.thank-you h2 {
    color: var(--color-accent1);
    margin-bottom: 2rem;
}

/* Policy Pages */
.policy-page {
    background-color: var(--color-light);
    padding: 3rem 0;
}

.policy-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    background-color: var(--color-light);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.policy-content h2 {
    color: var(--color-accent1);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.policy-content h2:first-child {
    margin-top: 0;
}

.policy-content p {
    margin-bottom: 1.5rem;
}

.policy-content ul, .policy-content ol {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

/* Feature Cards */
.course-contents {
    margin-top: 3rem;
    margin-bottom: 2rem;
}

.course-contents h3 {
    margin-bottom: 2rem;
}

.feature-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.feature-card {
    flex: 1 1 250px;
    display: flex;
    align-items: center;
    padding: 1.5rem;
    background-color: var(--color-light);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    font-size: 1.5rem;
    color: var(--color-accent2);
    margin-right: 1rem;
}

.feature-title {
    font-weight: 600;
    color: var(--color-text);
}

/* Responsive Styles */
@media (max-width: 768px) {
    .site-header .container {
        flex-direction: column;
        align-items: center;
    }
    
    .logo-container {
        margin-bottom: 1rem;
    }
    
    .main-nav ul {
        display: none;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .main-nav li {
        margin: 0.5rem 1rem;
    }
    .hero h2 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }
    .hero-text, .hero-image {
        flex: 1 1 100%;
    }
    
    .hero-text {
        padding-right: 0;
        margin-bottom: 2rem;
        text-align: center;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .cookie-popup {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .feature-card {
        flex: 1 1 100%;
    }
}

@media (max-width: 480px) {
    .btn {
        display: block;
        width: 100%;
        text-align: center;
    }
    
    .service-card, .feature, .testimonial-card {
        flex: 1 1 100%;
    }
} 