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

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

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

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

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

.cookie-content i {
    font-size: 1.5rem;
    margin-right: 10px;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

.cookie-buttons button {
    background: #4caf50;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: background 0.3s ease;
}

.cookie-buttons button:hover {
    background: #45a049;
}

/* Navigation */
.navbar {
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999;
}

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

.nav-logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: bold;
    color: #4caf50;
}

.nav-logo i {
    margin-right: 8px;
    font-size: 1.8rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #4caf50;
}

.nav-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-svg {
    width: 100%;
    height: 100%;
    opacity: 0.6;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #2e7d32;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    color: #555;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.btn-primary {
    background: #4caf50;
    color: white;
}

.btn-primary:hover {
    background: #45a049;
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: #4caf50;
    border: 2px solid #4caf50;
}

.btn-secondary:hover {
    background: #4caf50;
    color: white;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header i {
    font-size: 3rem;
    color: #4caf50;
    margin-bottom: 20px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #2e7d32;
}

.section-header p {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* About Section */
.about-section {
    padding: 100px 0;
    background: #f8f9fa;
}

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

.about-text h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #2e7d32;
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: #555;
    line-height: 1.8;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
}

.feature i {
    color: #4caf50;
    font-size: 1.2rem;
}

.about-visual svg {
    width: 100%;
    height: auto;
    max-width: 400px;
}

/* Services Section */
.services-section {
    padding: 100px 0;
}

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

.service-card {
    background: white;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.service-card i {
    font-size: 3rem;
    color: #4caf50;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #2e7d32;
}

.service-card p {
    color: #666;
    margin-bottom: 25px;
    line-height: 1.6;
}

.service-link {
    color: #4caf50;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.service-link:hover {
    color: #45a049;
}

/* Process Section */
.process-section {
    padding: 100px 0;
    background: #f8f9fa;
}

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

.step {
    text-align: center;
    position: relative;
}

.step-icon {
    position: relative;
    display: inline-block;
    margin-bottom: 30px;
}

.step-icon i {
    font-size: 3rem;
    color: #4caf50;
    background: white;
    padding: 30px;
    border-radius: 50%;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.step-number {
    position: absolute;
    top: -10px;
    right: -10px;
    background: #ff9800;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.1rem;
}

.step h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #2e7d32;
}

.step p {
    color: #666;
    line-height: 1.6;
}

/* Statistics Section */
.stats-section {
    padding: 80px 0;
    background: #2e7d32;
    color: white;
}

.stats-section .section-header h2 {
    color: white;
}

.stats-section .section-header p {
    color: white;
    opacity: 0.9;
}

.stats-section .section-header i {
    color: #81c784;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
}

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

.stat-item i {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #81c784;
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 10px;
}

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

/* Testimonials Section */
.testimonials-section {
    padding: 100px 0;
}

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

.testimonial {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    border-left: 4px solid #4caf50;
}

.testimonial-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 25px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-author i {
    font-size: 2.5rem;
    color: #4caf50;
}

.testimonial-author h4 {
    color: #2e7d32;
    margin-bottom: 5px;
}

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

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #4caf50 0%, #2e7d32 100%);
    color: white;
    text-align: center;
}

.cta-content i {
    font-size: 4rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: white;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
    color: white;
}

.cta-section .btn-primary {
    background: white;
    color: #4caf50;
    font-size: 1.2rem;
    padding: 18px 40px;
}

.cta-section .btn-primary:hover {
    background: #f8f9fa;
    transform: translateY(-3px);
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: white;
    padding: 60px 0 20px;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: bold;
    color: #4caf50;
    margin-bottom: 20px;
}

.footer-logo i {
    margin-right: 8px;
    font-size: 1.8rem;
}

.footer-section p {
    line-height: 1.8;
    margin-bottom: 20px;
    opacity: 0.9;
}

.footer-section h3 {
    color: #4caf50;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

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

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: white;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-section ul li a:hover {
    opacity: 1;
    color: #4caf50;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    color: white;
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #4caf50;
}

.contact-info p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.contact-info i {
    color: #4caf50;
    width: 20px;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 20px;
    text-align: center;
    opacity: 0.8;
}

/* Cookie Settings Modal */
.cookie-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 1001;
}

.cookie-modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    padding: 40px;
    border-radius: 12px;
    max-width: 500px;
    width: 90%;
}

.cookie-modal h3 {
    margin-bottom: 20px;
    color: #2e7d32;
}

.cookie-options {
    margin: 20px 0;
}

.cookie-option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.cookie-option:last-child {
    border-bottom: none;
}

.cookie-toggle {
    position: relative;
    width: 50px;
    height: 25px;
    background: #ccc;
    border-radius: 25px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.cookie-toggle.active {
    background: #4caf50;
}

.cookie-toggle::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    width: 21px;
    height: 21px;
    background: white;
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.cookie-toggle.active::after {
    transform: translateX(25px);
}

.cookie-modal-buttons {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
    margin-top: 30px;
}

.cookie-modal-buttons button {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 500;
}

.cookie-save {
    background: #4caf50;
    color: white;
}

.cookie-cancel {
    background: #f5f5f5;
    color: #333;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .nav-toggle {
        display: block;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .cookie-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }
}

@media (max-width: 480px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Form Styles */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
    color: #333;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 2px solid #e1e1e1;
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

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

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-submit {
    background: #4caf50;
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.form-submit:hover {
    background: #45a049;
}

/* Page Specific Styles */
.page-header {
    background: linear-gradient(135deg, #4caf50 0%, #2e7d32 100%);
    color: white;
    padding: 120px 0 80px;
    text-align: center;
    margin-top: 70px;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.content-section {
    padding: 80px 0;
}

.content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
}

.content-main h2 {
    color: #2e7d32;
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.content-main h3 {
    color: #4caf50;
    margin: 30px 0 15px;
    font-size: 1.4rem;
}

.content-main p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: #555;
}

.content-main ul {
    margin: 20px 0;
    padding-left: 30px;
}

.content-main li {
    margin-bottom: 10px;
    color: #555;
}

.sidebar {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 12px;
    height: fit-content;
}

.sidebar h3 {
    color: #2e7d32;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.sidebar ul {
    list-style: none;
}

.sidebar ul li {
    margin-bottom: 12px;
}

.sidebar ul li a {
    color: #4caf50;
    text-decoration: none;
    transition: color 0.3s ease;
}

.sidebar ul li a:hover {
    color: #45a049;
}

/* Legal Pages Styles */
.legal-content {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.legal-content h2 {
    color: #2e7d32;
    margin-top: 40px;
    margin-bottom: 20px;
    font-size: 1.8rem;
    border-bottom: 2px solid #4caf50;
    padding-bottom: 10px;
}

.legal-content h3 {
    color: #4caf50;
    margin-top: 30px;
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.legal-content p {
    margin-bottom: 20px;
    color: #555;
}

.legal-content ul, .legal-content ol {
    margin: 20px 0;
    padding-left: 30px;
}

.legal-content li {
    margin-bottom: 10px;
    color: #555;
}

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

.contact-details i {
    color: #4caf50;
    width: 20px;
}

.impressum-box {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 12px;
    border-left: 4px solid #4caf50;
    margin: 20px 0;
}

.impressum-box h3 {
    color: #2e7d32;
    margin-bottom: 15px;
}

.cookie-management {
    margin: 30px 0;
    text-align: center;
}

/* Additional Contact Page Styles */
.contact-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.contact-form-section h2 {
    color: #2e7d32;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-form {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 12px;
    margin-top: 30px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.contact-info-section h2 {
    color: #2e7d32;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 12px;
}

.contact-item i {
    color: #4caf50;
    font-size: 1.5rem;
    margin-top: 5px;
}

.contact-item h3 {
    color: #2e7d32;
    margin-bottom: 10px;
}

.contact-item a {
    color: #4caf50;
    text-decoration: none;
}

.contact-item a:hover {
    text-decoration: underline;
}

.contact-item small {
    display: block;
    color: #666;
    margin-top: 5px;
}

.social-contact {
    margin-top: 40px;
}

.social-contact h3 {
    color: #2e7d32;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.map-section {
    background: #f8f9fa;
    padding: 80px 0;
}

.map-section h2 {
    text-align: center;
    color: #2e7d32;
    margin-bottom: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.map-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: start;
}

.map-placeholder {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.map-placeholder svg {
    width: 100%;
    height: 400px;
}

.map-info h3 {
    color: #2e7d32;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.transport-options {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.transport-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.transport-item i {
    color: #4caf50;
    font-size: 1.3rem;
    margin-top: 3px;
}

.transport-item h4 {
    color: #2e7d32;
    margin-bottom: 8px;
}

.faq-section {
    padding: 80px 0;
}

.faq-section h2 {
    text-align: center;
    color: #2e7d32;
    margin-bottom: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

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

.faq-item {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    border-left: 4px solid #4caf50;
}

.faq-item h3 {
    color: #2e7d32;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.faq-item p {
    color: #555;
    line-height: 1.6;
}

/* Checkbox Styles */
.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    margin: 15px 0;
    line-height: 1.6;
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid #ddd;
    border-radius: 4px;
    position: relative;
    flex-shrink: 0;
    margin-top: 2px;
    transition: all 0.3s ease;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background: #4caf50;
    border-color: #4caf50;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-weight: bold;
    font-size: 14px;
}

/* Services Page Specific Styles */
.training-modules {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.module {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 12px;
    border-left: 4px solid #4caf50;
}

.module i {
    color: #4caf50;
    font-size: 1.5rem;
}

.module h4 {
    color: #2e7d32;
    margin-bottom: 5px;
}

.module .price {
    color: #4caf50;
    font-weight: bold;
    font-size: 1.1rem;
}

.focus-areas {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.focus-item {
    padding: 20px;
    background: #f8f9fa;
    border-radius: 12px;
    text-align: center;
}

.focus-item i {
    color: #4caf50;
    font-size: 2rem;
    margin-bottom: 15px;
}

.focus-item h4 {
    color: #2e7d32;
    margin-bottom: 10px;
}

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

.package {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    border-top: 4px solid #4caf50;
}

.package h4 {
    color: #2e7d32;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.package ul {
    margin-bottom: 20px;
}

.package-price {
    background: #4caf50;
    color: white;
    padding: 10px 20px;
    border-radius: 6px;
    text-align: center;
    font-weight: bold;
    font-size: 1.1rem;
}

.coaching-areas {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.coaching-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 12px;
}

.coaching-item i {
    color: #4caf50;
    font-size: 1.3rem;
    margin-top: 3px;
}

.coaching-item h4 {
    color: #2e7d32;
    margin-bottom: 8px;
}

.service-cta {
    background: linear-gradient(135deg, #4caf50 0%, #2e7d32 100%);
    color: white;
    padding: 50px;
    border-radius: 12px;
    text-align: center;
    margin: 60px 0;
}

.service-cta h2 {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: white;
}

.service-cta p {
    margin-bottom: 30px;
    opacity: 0.9;
    color: white;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* About Page Specific Styles */
.about-story {
    margin-bottom: 80px;
}

.story-timeline {
    position: relative;
    margin: 40px 0;
}

.story-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #4caf50;
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    align-items: center;
    margin: 40px 0;
    position: relative;
}

.timeline-item:nth-child(odd) {
    flex-direction: row-reverse;
}

.timeline-year {
    background: #4caf50;
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: bold;
    margin: 0 30px;
    z-index: 2;
    position: relative;
}

.timeline-content {
    flex: 1;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 12px;
    max-width: 400px;
}

.timeline-content h3 {
    color: #2e7d32;
    margin-bottom: 10px;
}

.mission-vision {
    margin: 80px 0;
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.mission, .vision {
    text-align: center;
    padding: 40px;
}

.mission i, .vision i {
    color: #4caf50;
    font-size: 3rem;
    margin-bottom: 20px;
}

.mission h2, .vision h2 {
    color: #2e7d32;
    margin-bottom: 20px;
}

.values-section {
    margin: 80px 0;
}

.values-section h2 {
    text-align: center;
    color: #2e7d32;
    margin-bottom: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

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

.value-item {
    background: white;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

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

.value-item i {
    color: #4caf50;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.value-item h3 {
    color: #2e7d32;
    margin-bottom: 15px;
}

.team-section {
    margin: 80px 0;
}

.team-section h2 {
    text-align: center;
    color: #2e7d32;
    margin-bottom: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

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

.team-member {
    background: white;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.member-avatar {
    margin-bottom: 20px;
}

.member-avatar i {
    color: #4caf50;
    font-size: 4rem;
}

.team-member h3 {
    color: #2e7d32;
    margin-bottom: 10px;
}

.position {
    color: #4caf50;
    font-weight: 600;
    margin-bottom: 15px;
    display: block;
}

.team-member p {
    color: #555;
    margin-bottom: 20px;
    line-height: 1.6;
}

.member-expertise {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}

.member-expertise span {
    background: #e8f5e8;
    color: #2e7d32;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.9rem;
}

.achievements-section {
    margin: 80px 0;
}

.achievements-section h2 {
    text-align: center;
    color: #2e7d32;
    margin-bottom: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

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

.achievement {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 12px;
    border-left: 4px solid #4caf50;
}

.achievement i {
    color: #4caf50;
    font-size: 2rem;
    margin-bottom: 20px;
}

.achievement h3 {
    color: #2e7d32;
    margin-bottom: 20px;
}

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

.achievement li {
    padding: 8px 0;
    border-bottom: 1px solid #e1e1e1;
}

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

.approach-section {
    margin: 80px 0;
}

.approach-section h2 {
    text-align: center;
    color: #2e7d32;
    margin-bottom: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.approach-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: center;
}

.approach-text h3 {
    color: #4caf50;
    margin: 30px 0 15px;
}

.approach-text h3:first-child {
    margin-top: 0;
}

.approach-visual svg {
    width: 100%;
    height: auto;
}

/* Blog Article Specific Styles */
.breadcrumb {
    margin-bottom: 20px;
}

.breadcrumb a {
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    margin-top: 20px;
    opacity: 0.8;
}

.article-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.blog-article {
    margin-bottom: 60px;
}

.article-image {
    margin: 40px 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.article-image svg {
    width: 100%;
    height: 400px;
}

.article-content .lead {
    font-size: 1.3rem;
    font-weight: 500;
    color: #2e7d32;
    line-height: 1.7;
    margin-bottom: 40px;
    padding: 30px;
    background: #f0f8f0;
    border-left: 4px solid #4caf50;
    border-radius: 0 12px 12px 0;
}

.article-content h2 {
    color: #2e7d32;
    margin: 40px 0 20px;
    font-size: 1.8rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.article-content h3 {
    color: #4caf50;
    margin: 30px 0 15px;
    font-size: 1.4rem;
}

.article-content h4 {
    color: #2e7d32;
    margin: 25px 0 12px;
    font-size: 1.2rem;
}

.article-content p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: #555;
}

.article-content ul, .article-content ol {
    margin: 20px 0;
    padding-left: 30px;
}

.article-content li {
    margin-bottom: 10px;
    line-height: 1.7;
    color: #555;
}

.article-cta {
    background: linear-gradient(135deg, #4caf50 0%, #2e7d32 100%);
    color: white;
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    margin: 50px 0;
}

.article-cta h3 {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: white;
}

.article-cta p {
    margin-bottom: 25px;
    opacity: 0.9;
    color: white;
}

.related-articles {
    margin: 60px 0;
}

.related-articles h2 {
    color: #2e7d32;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
}

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

.related-post {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 12px;
    border-left: 4px solid #4caf50;
}

.related-post h3 {
    margin-bottom: 10px;
}

.related-post h3 a {
    color: #2e7d32;
    text-decoration: none;
    font-size: 1.1rem;
}

.related-post h3 a:hover {
    color: #4caf50;
}

.related-post p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

/* Sidebar Author and Share Styles */
.author-box, .share-box {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 30px;
    border-left: 4px solid #4caf50;
}

.author-box h3, .share-box h3 {
    color: #2e7d32;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.social-share {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.social-share a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 15px;
    background: white;
    color: #555;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.social-share a:hover {
    background: #4caf50;
    color: white;
}

/* Newsletter and Popular Posts in Sidebar */
.newsletter-signup {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 30px;
    border-left: 4px solid #4caf50;
}

.newsletter-signup h3 {
    color: #2e7d32;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.newsletter-signup form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.newsletter-signup input {
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 0.9rem;
}

.newsletter-signup button {
    padding: 10px;
    background: #4caf50;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.popular-posts {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 30px;
    border-left: 4px solid #4caf50;
}

.popular-posts h3 {
    color: #2e7d32;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.popular-post {
    padding: 15px 0;
    border-bottom: 1px solid #e1e1e1;
}

.popular-post:last-child {
    border-bottom: none;
}

.popular-post h4 {
    margin-bottom: 8px;
}

.popular-post h4 a {
    color: #2e7d32;
    text-decoration: none;
    font-size: 1rem;
    line-height: 1.4;
}

.popular-post h4 a:hover {
    color: #4caf50;
}

.popular-post .post-date {
    color: #666;
    font-size: 0.85rem;
}

/* Blog Post Grid and Meta */
.blog-posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin: 60px 0;
}

.blog-post {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-post:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.blog-post.featured {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.post-image {
    height: 200px;
    overflow: hidden;
}

.blog-post.featured .post-image {
    height: 300px;
}

.post-image svg {
    width: 100%;
    height: 100%;
}

.post-content {
    padding: 30px;
}

.blog-post.featured .post-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 40px;
}

.post-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 0.9rem;
    opacity: 0.8;
}

.post-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.post-content h3 {
    margin-bottom: 15px;
}

.post-content h3 a {
    color: #2e7d32;
    text-decoration: none;
    font-size: 1.3rem;
    line-height: 1.4;
}

.post-content h3 a:hover {
    color: #4caf50;
}

.blog-post.featured .post-content h3 a {
    font-size: 1.6rem;
}

.post-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.read-more {
    color: #4caf50;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s ease;
}

.read-more:hover {
    gap: 12px;
}

/* Search Form */
.search-form {
    display: flex;
    margin-bottom: 30px;
}

.search-form input {
    flex: 1;
    padding: 12px;
    border: 2px solid #e1e1e1;
    border-right: none;
    border-radius: 6px 0 0 6px;
    font-size: 1rem;
}

.search-form button {
    padding: 12px 20px;
    background: #4caf50;
    color: white;
    border: none;
    border-radius: 0 6px 6px 0;
    cursor: pointer;
}

.categories {
    list-style: none;
    padding: 0;
}

.categories li {
    margin-bottom: 12px;
}

.categories a {
    color: #555;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 0;
    transition: color 0.3s ease;
}

.categories a:hover {
    color: #4caf50;
}

.categories i {
    width: 20px;
}

/* Thank You Page Styles */
.thank-you-section {
    padding: 100px 0;
    text-align: center;
}

.thank-you-content {
    max-width: 800px;
    margin: 0 auto;
}

.thank-you-icon {
    margin-bottom: 30px;
}

.thank-you-icon i {
    color: #4caf50;
    font-size: 5rem;
}

.thank-you-content h1 {
    color: #2e7d32;
    margin-bottom: 20px;
    font-size: 2.5rem;
}

.thank-you-content .lead {
    font-size: 1.3rem;
    color: #666;
    margin-bottom: 50px;
}

.confirmation-details {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 12px;
    margin: 40px 0;
    text-align: left;
}

.confirmation-details h2 {
    color: #2e7d32;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

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

.step {
    text-align: center;
    padding: 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.step i {
    color: #4caf50;
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.step h3 {
    color: #2e7d32;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.step p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

.submitted-info {
    background: #f0f8f0;
    padding: 30px;
    border-radius: 12px;
    margin: 40px 0;
    border-left: 4px solid #4caf50;
}

.submitted-info h2 {
    color: #2e7d32;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
}

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

.info-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    background: white;
    border-radius: 8px;
}

.info-item i {
    color: #4caf50;
    font-size: 1.2rem;
}

.info-item strong {
    color: #2e7d32;
    margin-right: 8px;
}

.contact-reminder {
    background: #fff3cd;
    padding: 30px;
    border-radius: 12px;
    margin: 40px 0;
    border-left: 4px solid #ffc107;
}

.contact-reminder h2 {
    color: #856404;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.urgent-contact {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: white;
    border-radius: 8px;
}

.contact-method i {
    color: #ffc107;
    font-size: 1.5rem;
}

.contact-method strong {
    color: #856404;
    display: block;
    margin-bottom: 5px;
}

.contact-method a {
    color: #4caf50;
    text-decoration: none;
    font-weight: 600;
}

.contact-method small {
    color: #666;
    font-size: 0.85rem;
}

.action-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin: 40px 0;
}

.resources-section {
    background: #f8f9fa;
    padding: 80px 0;
}

.resources-section h2 {
    text-align: center;
    color: #2e7d32;
    margin-bottom: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

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

.resource-item {
    background: white;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.resource-item i {
    color: #4caf50;
    font-size: 3rem;
    margin-bottom: 20px;
}

.resource-item h3 {
    color: #2e7d32;
    margin-bottom: 15px;
}

.resource-item p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.resource-link {
    color: #4caf50;
    text-decoration: none;
    font-weight: 600;
    padding: 10px 20px;
    border: 2px solid #4caf50;
    border-radius: 6px;
    display: inline-block;
    transition: all 0.3s ease;
}

.resource-link:hover {
    background: #4caf50;
    color: white;
}

@media (max-width: 968px) {
    .content-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .page-header h1 {
        font-size: 2.5rem;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .map-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .mission-vision-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .approach-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .blog-post.featured {
        grid-template-columns: 1fr;
    }
    
    .blog-post.featured .post-image {
        height: 200px;
    }
    
    .timeline-item {
        flex-direction: column !important;
        text-align: center;
    }
    
    .timeline-item .timeline-content {
        max-width: none;
        margin-top: 20px;
    }
    
    .story-timeline::before {
        display: none;
    }
}

@media (max-width: 480px) {
    .thank-you-content h1 {
        font-size: 2rem;
    }
    
    .next-steps {
        grid-template-columns: 1fr;
    }
    
    .action-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}