/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #FEFEFE;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    color: #8B4513;
    margin-bottom: 1rem;
    font-weight: 600;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }

p {
    margin-bottom: 1rem;
    color: #555;
}

a {
    color: #B8860B;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #8B4513;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    min-width: 120px;
}

.btn-primary {
    background-color: #FFD700;
    color: #8B4513;
    border: 2px solid #B8860B;
}

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

.btn-secondary {
    background-color: #F0E68C;
    color: #8B4513;
    border: 2px solid #B8860B;
}

.btn-secondary:hover {
    background-color: #B8860B;
    color: #FFFFFF;
}

.btn-outline {
    background-color: transparent;
    color: #8B4513;
    border: 2px solid #B8860B;
}

.btn-outline:hover {
    background-color: #B8860B;
    color: #FFFFFF;
}

/* Header and Navigation */
.navbar {
    background-color: #FFFFFF;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: bold;
    color: #8B4513;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: #8B4513;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
    background-color: #FFD700;
    color: #8B4513;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #8B4513;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #FFF8DC 0%, #F0E68C 100%);
    padding: 4rem 0;
    min-height: 500px;
    display: flex;
    align-items: center;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-text h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #8B4513;
}

.hero-text p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #666;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #FFF8DC 0%, #F0E68C 100%);
    padding: 3rem 0;
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.header-graphic {
    margin-top: 1.5rem;
}

/* Features and Cards */
.features, .services-overview, .about-content, .course-info, .mission {
    padding: 4rem 0;
}

.features-grid, .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.feature-card, .service-card {
    text-align: center;
    padding: 2rem;
    background: #FFFFFF;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.feature-card:hover, .service-card:hover {
    transform: translateY(-5px);
}

.feature-icon, .service-icon {
    margin-bottom: 1rem;
}

/* Content Grid */
.content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
}

.content-text, .mission-text {
    line-height: 1.8;
}

/* Stats */
.stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.stat-item {
    text-align: center;
    flex: 1;
}

.stat-item h3 {
    margin-top: 0.5rem;
    font-size: 1rem;
}

/* Course Cards */
.course-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.course-card {
    background: #FFFFFF;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
}

.course-icon {
    margin-bottom: 1.5rem;
}

/* Learning Modules */
.modules-list {
    margin-top: 2rem;
}

.module-item {
    display: flex;
    gap: 2rem;
    padding: 2rem;
    background: #FFFFFF;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
}

.module-content ul {
    list-style: none;
    margin-top: 1rem;
}

.module-content li {
    padding: 0.3rem 0;
    color: #666;
}

.module-content li:before {
    content: "• ";
    color: #FFD700;
    font-weight: bold;
}

/* Testimonials */
.testimonials {
    padding: 4rem 0;
    background-color: #FAFAFA;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.testimonial-card {
    background: #FFFFFF;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.testimonial-info h3 {
    margin-bottom: 0.3rem;
    color: #8B4513;
}

.testimonial-info p {
    color: #888;
    font-size: 0.9rem;
    margin: 0;
}

.stars {
    display: flex;
    gap: 0.2rem;
    margin-bottom: 1rem;
}

/* Blog */
.blog-articles {
    padding: 4rem 0;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.article-card {
    background: #FFFFFF;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.article-card:hover {
    transform: translateY(-5px);
}

.article-content {
    padding: 1.5rem;
}

.article-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: #888;
}

.article-meta .category {
    background-color: #FFD700;
    color: #8B4513;
    padding: 0.2rem 0.5rem;
    border-radius: 3px;
    font-weight: 500;
}

.read-more {
    font-weight: 500;
    color: #B8860B;
}

/* Contact Form */
.contact-content {
    padding: 4rem 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 2rem;
}

.contact-details {
    margin-top: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #8B4513;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem;
    border: 2px solid #E0E0E0;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #FFD700;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    cursor: pointer;
    font-size: 0.9rem;
}

.checkbox-label input[type="checkbox"] {
    margin: 0;
}

/* Pricing */
.pricing {
    padding: 4rem 0;
    background-color: #FAFAFA;
}

.pricing-card {
    background: #FFFFFF;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    overflow: hidden;
    max-width: 800px;
    margin: 2rem auto 0;
}

.pricing-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    align-items: center;
}

.price-graphic {
    padding: 2rem;
    background: linear-gradient(135deg, #FFF8DC 0%, #F0E68C 100%);
    text-align: center;
}

.pricing-details {
    padding: 2rem;
}

.price {
    font-size: 2rem;
    font-weight: bold;
    color: #8B4513;
    margin-bottom: 1rem;
}

.pricing-details ul {
    list-style: none;
    margin-bottom: 2rem;
}

.pricing-details li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #F0F0F0;
}

.pricing-details li:before {
    content: "✓ ";
    color: #FFD700;
    font-weight: bold;
}

/* CTA Sections */
.cta, .cta-section, .blog-cta, .enrollment-cta {
    padding: 4rem 0;
    background: linear-gradient(135deg, #FFD700 0%, #F0E68C 100%);
    text-align: center;
}

.cta-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

/* Thanks Page */
.thanks-page {
    padding: 4rem 0;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.thanks-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.thanks-graphic {
    margin-bottom: 2rem;
}

.thanks-message {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    color: #666;
}

.next-steps {
    margin: 3rem 0;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.step-item {
    text-align: center;
}

.step-icon {
    margin-bottom: 1rem;
}

.thanks-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin: 3rem 0;
}

.contact-reminder {
    margin-top: 3rem;
    padding: 2rem;
    background-color: #F8F8F8;
    border-radius: 10px;
}

/* Legal Pages */
.legal-page {
    padding: 4rem 0;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.legal-content h2 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #8B4513;
}

.legal-content h3 {
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
    color: #B8860B;
}

.legal-content ul {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.legal-content li {
    margin-bottom: 0.5rem;
}

.last-updated {
    color: #888;
    font-style: italic;
    margin-bottom: 2rem;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #8B4513;
    color: #FFFFFF;
    padding: 1rem;
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-banner.hidden {
    display: none;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}
.cookie-content p{
    color:white;
}
.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.cookie-buttons .btn {
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
}

/* Footer */
footer {
    background-color: #8B4513;
    color: #FFFFFF;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: #FFD700;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}
.footer-section p{
    color: white;
}
.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #F0E68C;
}

.footer-section a:hover {
    color: #FFD700;
}
.footer-bottom p{
    color: white;
}
.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #B8860B;
    color: #F0E68C;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        display: none;
    }
    
    .hero-content,
    .content-grid,
    .contact-grid,
    .pricing-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .thanks-actions {
        flex-direction: column;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-buttons {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .module-item {
        flex-direction: column;
        gap: 1rem;
    }
    
    .testimonial-header {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 2rem 0;
    }
    
    .hero-text h1 {
        font-size: 1.8rem;
    }
    
    .features-grid,
    .testimonials-grid,
    .articles-grid {
        grid-template-columns: 1fr;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
    }
}

/* Blog Post Styles */
.blog-post {
    padding: 2rem 0;
}

.post-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid #F0E68C;
}

.post-meta {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    color: #888;
}

.post-meta .category {
    background-color: #FFD700;
    color: #8B4513;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-weight: 500;
}

.post-graphic {
    margin: 2rem 0;
}

.post-content {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
    font-size: 1.1rem;
}

.post-content .lead {
    font-size: 1.3rem;
    font-weight: 500;
    color: #666;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, #FFF8DC 0%, #F0E68C 100%);
    border-radius: 10px;
    border-left: 4px solid #FFD700;
}

.post-content h2 {
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #F0E68C;
    color: #8B4513;
}

.post-content h3 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #B8860B;
}

.post-content ul {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.post-content li {
    margin-bottom: 0.8rem;
    color: #555;
}

.post-content strong {
    color: #8B4513;
    font-weight: 600;
}

.post-content em {
    color: #B8860B;
    font-style: italic;
}

.post-conclusion {
    background: linear-gradient(135deg, #FFF8DC 0%, #F0E68C 100%);
    padding: 2rem;
    border-radius: 10px;
    margin: 3rem 0;
    border-left: 4px solid #FFD700;
}

.post-conclusion h3 {
    margin-top: 0;
    color: #8B4513;
}

.post-footer {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 2px solid #F0E68C;
}

.post-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
    gap: 1rem;
}

.related-articles {
    background-color: #FAFAFA;
    padding: 2rem;
    border-radius: 10px;
}

.related-articles h3 {
    margin-bottom: 1rem;
    color: #8B4513;
}

.related-articles ul {
    list-style: none;
    padding: 0;
}

.related-articles li {
    margin-bottom: 0.8rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid #E0E0E0;
}

.related-articles li:last-child {
    border-bottom: none;
}

.related-articles a {
    color: #B8860B;
    font-weight: 500;
}

.related-articles a:hover {
    color: #8B4513;
}

/* Responsive Blog Styles */
@media (max-width: 768px) {
    .post-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .post-content {
        font-size: 1rem;
    }
    
    .post-content .lead {
        font-size: 1.1rem;
        padding: 1rem;
    }
    
    .post-navigation {
        flex-direction: column;
        gap: 1rem;
    }
    
    .post-content ul {
        padding-left: 1.5rem;
    }
}

/* Utility Classes */
.text-center { text-align: center; }
.mb-2 { margin-bottom: 2rem; }
.mt-2 { margin-top: 2rem; }
.hidden { display: none; }