/* 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: #fff;
}

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

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

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: 1rem;
}

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

a:hover {
    color: #1a3f1a;
}

ul, ol {
    margin-bottom: 1rem;
    padding-left: 2rem;
}

blockquote {
    border-left: 4px solid #2c5c2d;
    padding: 1rem 1.5rem;
    margin: 1.5rem 0;
    background-color: #f8f9fa;
    font-style: italic;
    border-radius: 0 4px 4px 0;
}

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

.btn-primary {
    background-color: #2c5c2d;
    color: white;
}

.btn-primary:hover {
    background-color: #1a3f1a;
    color: white;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: #6c757d;
    color: white;
}

.btn-secondary:hover {
    background-color: #545b62;
    color: white;
}

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

.btn-outline:hover {
    background-color: #2c5c2d;
    color: white;
}

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

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

.logo h1 {
    color: #2c5c2d;
    font-size: 1.5rem;
    margin-bottom: 0;
}

.nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav li {
    margin-left: 2rem;
}

.nav a {
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
}

.nav a:hover,
.nav a.active {
    color: #2c5c2d;
}

.nav a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #2c5c2d;
}

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

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

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

.cookie-content p {
    margin-bottom: 0;
    flex: 1;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.cookie-buttons .btn {
    padding: 8px 16px;
    font-size: 0.9rem;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 4rem 0;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-text h2 {
    color: #2c5c2d;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

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

.hero-image img {
    width: 100%;
    height: auto;
    max-width: 400px;
}

/* Features Section */
.features {
    padding: 4rem 0;
    background-color: #fff;
}

.features h3 {
    text-align: center;
    margin-bottom: 3rem;
    color: #2c5c2d;
}

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

.feature {
    text-align: center;
    padding: 2rem;
    border-radius: 10px;
    background-color: #f8f9fa;
    transition: transform 0.3s ease;
}

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

.feature img {
    width: 80px;
    height: 80px;
    margin-bottom: 1rem;
}

.feature h4 {
    color: #2c5c2d;
    margin-bottom: 1rem;
}

/* About Page Styles */
.about-hero {
    padding: 4rem 0;
    background-color: #f8f9fa;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-text h2 {
    color: #2c5c2d;
    margin-bottom: 1.5rem;
}

.about-image img {
    width: 100%;
    max-width: 350px;
}

.team {
    padding: 4rem 0;
}

.team h3 {
    text-align: center;
    margin-bottom: 3rem;
    color: #2c5c2d;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.team-member {
    text-align: center;
    padding: 2rem;
    background-color: #f8f9fa;
    border-radius: 10px;
}

.team-member img {
    width: 120px;
    height: 120px;
    margin-bottom: 1rem;
    border-radius: 50%;
}

.team-member h4 {
    color: #2c5c2d;
    margin-bottom: 1rem;
}

.mission {
    padding: 4rem 0;
    background-color: #f8f9fa;
}

.mission h3 {
    color: #2c5c2d;
    margin-bottom: 2rem;
}

.mission h4 {
    color: #2c5c2d;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

/* Services Page Styles */
.services-hero {
    padding: 4rem 0;
    background-color: #f8f9fa;
}

.services-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.services-text h2 {
    color: #2c5c2d;
    margin-bottom: 1.5rem;
}

.services-image img {
    width: 100%;
    max-width: 350px;
}

.courses {
    padding: 4rem 0;
}

.courses h3 {
    text-align: center;
    margin-bottom: 3rem;
    color: #2c5c2d;
}

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

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

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

.course-card.featured {
    border: 3px solid #2c5c2d;
    transform: scale(1.05);
}

.course-card img {
    width: 80px;
    height: 80px;
    margin-bottom: 1rem;
}

.course-card h4 {
    color: #2c5c2d;
    margin-bottom: 1rem;
}

.price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c5c2d;
    margin-bottom: 1rem;
}

.course-card ul {
    text-align: left;
    margin-bottom: 2rem;
}

.popular {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #2c5c2d;
    color: white;
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.course-features {
    padding: 4rem 0;
    background-color: #f8f9fa;
}

.course-features h3 {
    text-align: center;
    margin-bottom: 3rem;
    color: #2c5c2d;
}

.learning-modules {
    padding: 4rem 0;
}

.learning-modules h3 {
    text-align: center;
    margin-bottom: 3rem;
    color: #2c5c2d;
}

.modules-list {
    display: grid;
    gap: 1.5rem;
}

.module {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    border-left: 4px solid #2c5c2d;
}

.module h4 {
    color: #2c5c2d;
    margin-bottom: 1rem;
}

/* Testimonials Page Styles */
.testimonials-hero {
    padding: 4rem 0;
    background-color: #f8f9fa;
}

.testimonials-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.testimonials-text h2 {
    color: #2c5c2d;
    margin-bottom: 1.5rem;
}

.testimonials-image img {
    width: 100%;
    max-width: 350px;
}

.testimonials-grid {
    padding: 4rem 0;
}

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

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

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

.stars img {
    width: 20px;
    height: 20px;
}

.testimonial p {
    font-style: italic;
    margin-bottom: 1.5rem;
}

.testimonial-author strong {
    color: #2c5c2d;
    display: block;
    margin-bottom: 0.5rem;
}

.testimonial-author span {
    color: #666;
    font-size: 0.9rem;
}

.statistics {
    padding: 4rem 0;
    background-color: #2c5c2d;
    color: white;
}

.statistics h3 {
    text-align: center;
    margin-bottom: 3rem;
}

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

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
}

.cta-section {
    padding: 4rem 0;
    background-color: #f8f9fa;
    text-align: center;
}

.cta-content h3 {
    color: #2c5c2d;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #555;
}

/* Blog Page Styles */
.blog-hero {
    padding: 4rem 0;
    background-color: #f8f9fa;
}

.blog-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.blog-text h2 {
    color: #2c5c2d;
    margin-bottom: 1.5rem;
}

.blog-image img {
    width: 100%;
    max-width: 350px;
}

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

.blog-articles h3 {
    text-align: center;
    margin-bottom: 3rem;
    color: #2c5c2d;
}

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

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

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

.article-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.article-content {
    padding: 2rem;
}

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

.date {
    color: #2c5c2d;
}

.category {
    background-color: #e9ecef;
    padding: 2px 8px;
    border-radius: 12px;
}

.article-card h4 {
    color: #2c5c2d;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.article-card h4 a {
    color: inherit;
}

.article-card h4 a:hover {
    color: #1a3f1a;
}

.article-card p {
    color: #666;
    margin-bottom: 1.5rem;
}

.read-more {
    color: #2c5c2d;
    font-weight: 600;
    text-decoration: none;
}

.read-more:hover {
    color: #1a3f1a;
}

.newsletter {
    padding: 4rem 0;
    background-color: #2c5c2d;
    color: white;
    text-align: center;
}

.newsletter h3 {
    margin-bottom: 1rem;
}

.newsletter p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.newsletter .btn-primary {
    background-color: white;
    color: #2c5c2d;
}

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

/* Blog Article Page Styles */
.blog-article {
    padding: 2rem 0 4rem;
}

.article-header {
    margin-bottom: 2rem;
}

.breadcrumb {
    margin-bottom: 1rem;
    color: #666;
}

.breadcrumb a {
    color: #2c5c2d;
}

.article-header h1 {
    color: #2c5c2d;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.article-header .article-meta {
    display: flex;
    gap: 2rem;
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 2rem;
}

.article-image {
    margin-bottom: 3rem;
    text-align: center;
}

.article-image img {
    max-width: 500px;
    width: 100%;
    height: auto;
    border-radius: 10px;
}

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

.lead {
    font-size: 1.3rem;
    font-weight: 500;
    color: #555;
    margin-bottom: 2rem;
    line-height: 1.5;
}

.blog-article h3 {
    color: #2c5c2d;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
}

.blog-article h4 {
    color: #2c5c2d;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.blog-article h5 {
    color: #2c5c2d;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

.blog-article ul,
.blog-article ol {
    margin-bottom: 1.5rem;
}

.article-footer {
    max-width: 800px;
    margin: 3rem auto 0;
    padding-top: 2rem;
    border-top: 1px solid #e9ecef;
}

.share-buttons {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.share-buttons span {
    font-weight: 600;
    color: #2c5c2d;
}

.share-buttons .btn {
    padding: 6px 12px;
    font-size: 0.9rem;
}

.article-tags {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.article-tags span {
    font-weight: 600;
    color: #2c5c2d;
}

.tag {
    background-color: #e9ecef;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.9rem;
    color: #555;
}

.related-articles {
    padding: 4rem 0;
    background-color: #f8f9fa;
}

.related-articles h3 {
    text-align: center;
    margin-bottom: 3rem;
    color: #2c5c2d;
}

/* Contact Page Styles */
.contact-hero {
    padding: 4rem 0;
    background-color: #f8f9fa;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.contact-text h2 {
    color: #2c5c2d;
    margin-bottom: 1.5rem;
}

.contact-image img {
    width: 100%;
    max-width: 350px;
}

.contact-form-section {
    padding: 4rem 0;
}

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

.contact-info h3 {
    color: #2c5c2d;
    margin-bottom: 2rem;
}

.contact-item {
    margin-bottom: 2rem;
}

.contact-item h4 {
    color: #2c5c2d;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.form-container h3 {
    color: #2c5c2d;
    margin-bottom: 2rem;
}

.contact-form {
    display: grid;
    gap: 1.5rem;
}

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

.form-group label {
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #2c5c2d;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px;
    border: 2px solid #e9ecef;
    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: #2c5c2d;
}

.checkbox-group {
    flex-direction: row;
    align-items: center;
    gap: 0.5rem;
}

.checkbox-group input {
    width: auto;
}

.checkbox-group label {
    margin-bottom: 0;
    font-weight: normal;
}

.map-section {
    padding: 4rem 0;
    background-color: #f8f9fa;
}

.map-section h3 {
    text-align: center;
    margin-bottom: 3rem;
    color: #2c5c2d;
}

.map-placeholder {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.map-placeholder img {
    width: 100%;
    max-width: 400px;
}

.map-info {
    background-color: #fff;
    padding: 2rem;
    border-radius: 10px;
}

.faq-section {
    padding: 4rem 0;
}

.faq-section h3 {
    text-align: center;
    margin-bottom: 3rem;
    color: #2c5c2d;
}

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

.faq-item {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
}

.faq-item h4 {
    color: #2c5c2d;
    margin-bottom: 1rem;
}

/* Thanks Page Styles */
.thanks-section {
    padding: 4rem 0;
    text-align: center;
}

.thanks-content {
    max-width: 600px;
    margin: 0 auto;
}

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

.thanks-icon img {
    width: 80px;
    height: 80px;
}

.thanks-content h2 {
    color: #2c5c2d;
    margin-bottom: 1.5rem;
}

.next-steps {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    margin: 2rem 0;
    text-align: left;
}

.next-steps h3 {
    color: #2c5c2d;
    margin-bottom: 1rem;
    text-align: center;
}

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

.recommendations {
    padding: 4rem 0;
    background-color: #f8f9fa;
}

.recommendations h3 {
    text-align: center;
    margin-bottom: 3rem;
    color: #2c5c2d;
}

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

.recommendation {
    text-align: center;
    background-color: #fff;
    padding: 2rem;
    border-radius: 10px;
}

.recommendation img {
    width: 60px;
    height: 60px;
    margin-bottom: 1rem;
}

.recommendation h4 {
    color: #2c5c2d;
    margin-bottom: 1rem;
}

.recommendation a {
    color: #2c5c2d;
    font-weight: 600;
}

/* Legal Pages Styles */
.legal-content {
    padding: 4rem 0;
    max-width: 900px;
    margin: 0 auto;
}

.legal-content h2 {
    color: #2c5c2d;
    margin-bottom: 2rem;
    text-align: center;
}

.legal-content h3 {
    color: #2c5c2d;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
}

.legal-content h4 {
    color: #2c5c2d;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.legal-content h5 {
    color: #2c5c2d;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
}

.cookie-table th,
.cookie-table td {
    border: 1px solid #e9ecef;
    padding: 12px;
    text-align: left;
}

.cookie-table th {
    background-color: #f8f9fa;
    font-weight: 600;
    color: #2c5c2d;
}

.cookie-settings {
    margin: 2rem 0;
    text-align: center;
}

/* Footer */
.footer {
    background-color: #2c5c2d;
    color: white;
    padding: 3rem 0 1rem;
}

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

.footer-section h4 {
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

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

.footer-section a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid #495057;
    padding-top: 1rem;
    text-align: center;
    color: #ccc;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .header .container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .nav li {
        margin: 0 1rem;
    }
    
    .hero-content,
    .about-content,
    .services-content,
    .testimonials-content,
    .blog-content,
    .contact-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .contact-layout,
    .map-placeholder {
        grid-template-columns: 1fr;
    }
    
    .courses-grid,
    .features-grid,
    .team-grid,
    .articles-grid,
    .testimonials {
        grid-template-columns: 1fr;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .thanks-actions {
        flex-direction: column;
        align-items: center;
    }
    
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    
    .hero-text h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cookie-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .article-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .share-buttons {
        flex-wrap: wrap;
    }
}

/* Print Styles */
@media print {
    .header,
    .cookie-banner,
    .footer,
    .share-buttons,
    .btn {
        display: none;
    }
    
    .container {
        max-width: none;
        padding: 0;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
    
    h1, h2, h3 {
        page-break-after: avoid;
    }
    
    p, ul, ol {
        orphans: 3;
        widows: 3;
    }
}
