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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #ffffff;
}

.ad-disclosure {
    background-color: #f8f9fa;
    padding: 8px 20px;
    text-align: center;
    font-size: 13px;
    color: #6c757d;
    border-bottom: 1px solid #e9ecef;
}

.navbar {
    background-color: #1e3a2e;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #7fb069;
    text-decoration: none;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: #e8f5e9;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #7fb069;
}

.hero-section {
    background-color: #2d4a3e;
    padding: 80px 20px;
    position: relative;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto 40px;
    text-align: center;
    color: #ffffff;
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 20px;
    margin-bottom: 30px;
    color: #d4e4dc;
}

.cta-button {
    display: inline-block;
    background-color: #7fb069;
    color: #ffffff;
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    font-size: 16px;
    transition: background-color 0.3s;
    cursor: pointer;
    border: none;
}

.cta-button:hover {
    background-color: #6a9c57;
}

.hero-image {
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 10px;
    overflow: hidden;
}

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

.intro-section {
    background-color: #f5f9f7;
    padding: 100px 20px;
}

.content-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.content-wrapper h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #1e3a2e;
}

.content-wrapper p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #4a5d54;
}

.visual-break {
    width: 100%;
    background-color: #e8f5e9;
}

.visual-break img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

.values-section {
    background-color: #ffffff;
    padding: 100px 20px;
}

.values-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.value-card {
    flex: 1;
    min-width: 280px;
    padding: 40px 30px;
    background-color: #f8faf9;
    border-left: 4px solid #7fb069;
}

.value-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #1e3a2e;
}

.value-card p {
    font-size: 16px;
    color: #5a6c64;
    line-height: 1.7;
}

.services-preview {
    background-color: #fafbfa;
    padding: 80px 20px;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.section-header h2 {
    font-size: 42px;
    margin-bottom: 15px;
    color: #1e3a2e;
}

.section-header p {
    font-size: 20px;
    color: #5a6c64;
}

.services-list {
    max-width: 1200px;
    margin: 0 auto;
}

.service-item {
    display: flex;
    gap: 50px;
    margin-bottom: 80px;
    align-items: center;
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
}

.service-item.reverse {
    flex-direction: row-reverse;
}

.service-item img {
    width: 450px;
    height: 300px;
    object-fit: cover;
    border-radius: 6px;
    flex-shrink: 0;
}

.service-content {
    flex: 1;
}

.service-content h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #1e3a2e;
}

.service-content p {
    font-size: 17px;
    margin-bottom: 15px;
    color: #4a5d54;
    line-height: 1.7;
}

.price {
    font-size: 32px;
    font-weight: 700;
    color: #7fb069;
    margin: 20px 0;
}

.select-service {
    background-color: #1e3a2e;
    color: #ffffff;
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.select-service:hover {
    background-color: #2d4a3e;
}

.contact-form-section {
    background-color: #2d4a3e;
    padding: 100px 20px;
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 50px;
    border-radius: 10px;
}

.form-container h2 {
    font-size: 36px;
    margin-bottom: 15px;
    color: #1e3a2e;
    text-align: center;
}

.form-container > p {
    text-align: center;
    margin-bottom: 40px;
    color: #5a6c64;
    font-size: 17px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

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

.form-group label {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #2c3e50;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 15px;
    font-size: 16px;
    border: 2px solid #e0e7e4;
    border-radius: 5px;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

.submit-button {
    background-color: #7fb069;
    color: #ffffff;
    padding: 15px 40px;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
    margin-top: 10px;
}

.submit-button:hover {
    background-color: #6a9c57;
}

.footer {
    background-color: #1a2f25;
    color: #d4e4dc;
    padding: 60px 20px 20px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.footer-section {
    flex: 1;
    min-width: 200px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-section h4 {
    color: #7fb069;
    font-size: 18px;
    margin-bottom: 8px;
}

.footer-section a {
    color: #d4e4dc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: #7fb069;
}

.footer-section p {
    font-size: 15px;
    line-height: 1.6;
}

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto 30px;
    padding: 30px;
    background-color: #243a30;
    border-radius: 5px;
    font-size: 14px;
    line-height: 1.6;
    color: #c0d4c8;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #2d4a3e;
    font-size: 14px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1e3a2e;
    padding: 25px 20px;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    z-index: 2000;
    display: none;
}

.cookie-banner.show {
    display: block;
}

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

.cookie-content p {
    flex: 1;
    color: #e8f5e9;
    font-size: 15px;
    min-width: 300px;
}

.cookie-content a {
    color: #7fb069;
    text-decoration: underline;
}

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

.cookie-accept,
.cookie-reject {
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.cookie-accept {
    background-color: #7fb069;
    color: #ffffff;
}

.cookie-accept:hover {
    background-color: #6a9c57;
}

.cookie-reject {
    background-color: #5a6c64;
    color: #ffffff;
}

.cookie-reject:hover {
    background-color: #4a5d54;
}

.page-header {
    background-color: #2d4a3e;
    padding: 80px 20px 60px;
    text-align: center;
    color: #ffffff;
}

.page-header h1 {
    font-size: 48px;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 20px;
    color: #d4e4dc;
}

.about-intro {
    background-color: #ffffff;
    padding: 100px 20px;
}

.team-visual {
    width: 100%;
    background-color: #f5f9f7;
}

.team-visual img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

.mission-section {
    background-color: #fafbfa;
    padding: 100px 20px;
}

.mission-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
}

.mission-item {
    flex: 1;
    min-width: 300px;
    padding: 50px 40px;
    background-color: #ffffff;
    border-radius: 8px;
}

.mission-item h3 {
    font-size: 26px;
    margin-bottom: 20px;
    color: #1e3a2e;
}

.mission-item p {
    font-size: 17px;
    color: #4a5d54;
    line-height: 1.8;
}

.approach-section {
    background-color: #e8f5e9;
    padding: 100px 20px;
}

.approach-steps {
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.step {
    background-color: #ffffff;
    padding: 30px;
    border-left: 5px solid #7fb069;
    border-radius: 5px;
}

.step h4 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #1e3a2e;
}

.step p {
    font-size: 16px;
    color: #5a6c64;
    line-height: 1.7;
}

.experience-section {
    background-color: #ffffff;
    padding: 100px 20px;
}

.commitment-section {
    background-color: #f5f9f7;
    padding: 100px 20px;
}

.services-detailed {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
}

.service-block {
    display: flex;
    gap: 60px;
    margin-bottom: 100px;
    align-items: stretch;
}

.service-block.reverse {
    flex-direction: row-reverse;
}

.service-image-container {
    flex: 1;
    background-color: #e8f5e9;
    border-radius: 8px;
    overflow: hidden;
}

.service-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.service-details {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-details h2 {
    font-size: 32px;
    margin-bottom: 25px;
    color: #1e3a2e;
}

.service-details p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #4a5d54;
    line-height: 1.8;
}

.service-details ul {
    margin: 20px 0 30px 20px;
    color: #5a6c64;
}

.service-details li {
    margin-bottom: 10px;
    font-size: 16px;
    line-height: 1.6;
}

.price-tag {
    font-size: 36px;
    font-weight: 700;
    color: #7fb069;
    margin: 30px 0 20px;
}

.cta-section {
    background-color: #2d4a3e;
    padding: 80px 20px;
    text-align: center;
}

.cta-section h2 {
    font-size: 40px;
    margin-bottom: 20px;
    color: #ffffff;
}

.cta-section p {
    font-size: 20px;
    margin-bottom: 40px;
    color: #d4e4dc;
}

.contact-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
}

.contact-info-section {
    display: flex;
    gap: 60px;
    align-items: center;
    flex-wrap: wrap;
}

.contact-info-block {
    flex: 1;
    min-width: 300px;
}

.contact-info-block h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #1e3a2e;
}

.info-item {
    margin-bottom: 35px;
}

.info-item h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #7fb069;
}

.info-item p {
    font-size: 16px;
    color: #4a5d54;
    line-height: 1.6;
}

.location-image {
    flex: 1;
    min-width: 400px;
    background-color: #e8f5e9;
    border-radius: 8px;
    overflow: hidden;
}

.location-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.additional-info-section {
    background-color: #f5f9f7;
    padding: 80px 20px;
}

.legal-page {
    max-width: 1000px;
    margin: 0 auto;
    padding: 60px 20px 100px;
}

.legal-content h1 {
    font-size: 42px;
    margin-bottom: 15px;
    color: #1e3a2e;
}

.last-updated {
    font-size: 15px;
    color: #6c757d;
    margin-bottom: 40px;
}

.legal-content h2 {
    font-size: 28px;
    margin-top: 50px;
    margin-bottom: 20px;
    color: #1e3a2e;
}

.legal-content h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #2d4a3e;
}

.legal-content p {
    font-size: 16px;
    margin-bottom: 15px;
    color: #4a5d54;
    line-height: 1.8;
}

.legal-content ul {
    margin: 15px 0 20px 30px;
    color: #5a6c64;
}

.legal-content li {
    margin-bottom: 10px;
    line-height: 1.7;
}

.legal-content a {
    color: #7fb069;
    text-decoration: underline;
}

.gdpr-table,
.cookie-table {
    width: 100%;
    margin: 25px 0;
    border-collapse: collapse;
}

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

.gdpr-table th,
.cookie-table th {
    background-color: #f5f9f7;
    font-weight: 600;
    color: #1e3a2e;
}

.gdpr-table td,
.cookie-table td {
    color: #4a5d54;
}

.thanks-section {
    background-color: #f5f9f7;
    padding: 100px 20px;
    min-height: 60vh;
}

.thanks-container {
    max-width: 800px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 60px 50px;
    border-radius: 10px;
    text-align: center;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background-color: #7fb069;
    color: #ffffff;
    font-size: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
}

.thanks-container h1 {
    font-size: 40px;
    margin-bottom: 15px;
    color: #1e3a2e;
}

.thanks-container > p {
    font-size: 20px;
    color: #5a6c64;
    margin-bottom: 40px;
}

.thanks-details {
    background-color: #f5f9f7;
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 40px;
}

.thanks-details p {
    font-size: 17px;
    color: #4a5d54;
    line-height: 1.7;
    margin-bottom: 10px;
}

#selectedServiceInfo {
    font-weight: 600;
    color: #7fb069;
}

.next-steps {
    text-align: left;
    margin-bottom: 40px;
}

.next-steps h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #1e3a2e;
    text-align: center;
}

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

.next-steps li {
    padding: 12px 0 12px 35px;
    position: relative;
    font-size: 16px;
    color: #4a5d54;
    line-height: 1.6;
}

.next-steps li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #7fb069;
    font-weight: 700;
    font-size: 20px;
}

.thanks-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.secondary-button {
    display: inline-block;
    background-color: transparent;
    color: #1e3a2e;
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    font-size: 16px;
    border: 2px solid #1e3a2e;
    transition: all 0.3s;
    cursor: pointer;
}

.secondary-button:hover {
    background-color: #1e3a2e;
    color: #ffffff;
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 36px;
    }

    .nav-links {
        gap: 15px;
    }

    .service-item {
        flex-direction: column;
        gap: 30px;
    }

    .service-item.reverse {
        flex-direction: column;
    }

    .service-item img {
        width: 100%;
    }

    .service-block {
        flex-direction: column;
    }

    .service-block.reverse {
        flex-direction: column;
    }

    .contact-info-section {
        flex-direction: column;
    }

    .values-grid {
        flex-direction: column;
    }

    .mission-grid {
        flex-direction: column;
    }

    .footer-content {
        flex-direction: column;
        gap: 30px;
    }

    .cookie-content {
        flex-direction: column;
        gap: 20px;
    }

    .thanks-container {
        padding: 40px 25px;
    }
}