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

:root {
    --primary-color: #2d7a5f;
    --secondary-color: #4a9b7a;
    --dark-color: #1a4d3a;
    --light-bg: #f4f7f5;
    --white: #ffffff;
    --text-dark: #2c3e50;
    --text-light: #6c757d;
    --border-color: #dfe6e4;
    --accent-color: #5faa8c;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--white);
}

.ad-disclosure {
    background-color: var(--light-bg);
    padding: 8px 20px;
    text-align: center;
    font-size: 13px;
    color: var(--text-light);
    border-bottom: 1px solid var(--border-color);
}

.main-nav {
    background-color: var(--white);
    padding: 20px 0;
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
}

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

.nav-links a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.hero-section {
    position: relative;
    margin-bottom: 60px;
}

.hero-image-container {
    position: relative;
    height: 550px;
    overflow: hidden;
    background-color: var(--dark-color);
}

.hero-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.85;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 30px;
    background: linear-gradient(to bottom, rgba(26, 77, 58, 0.3), rgba(26, 77, 58, 0.7));
}

.hero-overlay h1 {
    font-size: 52px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
    max-width: 900px;
}

.hero-overlay p {
    font-size: 20px;
    color: var(--white);
    max-width: 700px;
    line-height: 1.6;
}

.intro-section {
    padding: 70px 30px;
    background-color: var(--white);
}

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

.intro-content h2 {
    font-size: 38px;
    color: var(--primary-color);
    margin-bottom: 25px;
    font-weight: 700;
}

.intro-content p {
    font-size: 18px;
    color: var(--text-dark);
    margin-bottom: 20px;
    line-height: 1.8;
}

.services-preview {
    padding: 70px 30px;
    background-color: var(--light-bg);
}

.services-intro {
    max-width: 800px;
    margin: 0 auto 50px;
    text-align: center;
}

.services-intro h2 {
    font-size: 38px;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 700;
}

.services-intro p {
    font-size: 18px;
    color: var(--text-light);
}

.services-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.service-card {
    background-color: var(--white);
    padding: 35px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
}

.service-image {
    width: 100%;
    height: 280px;
    margin-bottom: 25px;
    overflow: hidden;
    border-radius: 6px;
    background-color: var(--light-bg);
}

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

.service-card h3 {
    font-size: 26px;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 700;
}

.service-card p {
    font-size: 16px;
    color: var(--text-dark);
    margin-bottom: 20px;
    line-height: 1.7;
}

.service-price {
    font-size: 22px;
    font-weight: 700;
    color: var(--dark-color);
    margin: 15px 0;
}

.select-service-btn {
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 14px 28px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    align-self: flex-start;
}

.select-service-btn:hover {
    background-color: var(--dark-color);
}

.approach-section {
    padding: 70px 30px;
    background-color: var(--white);
}

.approach-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
}

.approach-text {
    flex: 1;
}

.approach-text h2 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 25px;
    font-weight: 700;
}

.approach-text p {
    font-size: 17px;
    color: var(--text-dark);
    margin-bottom: 20px;
    line-height: 1.8;
}

.approach-image {
    flex: 1;
    background-color: var(--light-bg);
}

.approach-image img {
    width: 100%;
    height: auto;
    border-radius: 6px;
    object-fit: cover;
}

.cta-section {
    padding: 70px 30px;
    background-color: var(--primary-color);
    text-align: center;
}

.cta-content h2 {
    font-size: 38px;
    color: var(--white);
    margin-bottom: 15px;
    font-weight: 700;
}

.cta-content p {
    font-size: 18px;
    color: var(--white);
    margin-bottom: 30px;
}

.cta-button {
    display: inline-block;
    background-color: var(--white);
    color: var(--primary-color);
    padding: 16px 40px;
    font-size: 17px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 5px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.form-section {
    padding: 70px 30px;
    background-color: var(--light-bg);
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
    background-color: var(--white);
    padding: 45px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.form-container h2 {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 10px;
    font-weight: 700;
}

.form-container > p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 30px;
}

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

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

.form-group label {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 15px;
    font-size: 16px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.submit-button {
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 16px 35px;
    font-size: 17px;
    font-weight: 600;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    align-self: flex-start;
}

.submit-button:hover {
    background-color: var(--dark-color);
}

.disclaimer-section {
    padding: 50px 30px;
    background-color: #fef9f5;
    border-top: 2px solid #f0e8df;
    border-bottom: 2px solid #f0e8df;
}

.disclaimer-content {
    max-width: 1000px;
    margin: 0 auto;
}

.disclaimer-content p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.8;
    text-align: center;
}

.main-footer {
    background-color: var(--dark-color);
    color: var(--white);
    padding: 50px 30px 20px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 30px;
}

.footer-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-column h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--white);
}

.footer-column p,
.footer-column a {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    line-height: 1.6;
}

.footer-column a:hover {
    color: var(--white);
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--white);
    padding: 20px 30px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    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;
}

.cookie-content p {
    flex: 1;
    font-size: 15px;
    color: var(--text-dark);
    line-height: 1.6;
}

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

.cookie-accept,
.cookie-reject {
    padding: 10px 25px;
    font-size: 15px;
    font-weight: 600;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.cookie-accept {
    background-color: var(--primary-color);
    color: var(--white);
}

.cookie-accept:hover {
    opacity: 0.9;
}

.cookie-reject {
    background-color: var(--light-bg);
    color: var(--text-dark);
}

.cookie-reject:hover {
    opacity: 0.8;
}

.page-header {
    padding: 70px 30px 50px;
    background-color: var(--light-bg);
    text-align: center;
}

.page-header h1 {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 700;
}

.page-header p {
    font-size: 20px;
    color: var(--text-light);
}

.about-intro {
    padding: 70px 30px;
    background-color: var(--white);
}

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

.about-content h2 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 25px;
    font-weight: 700;
}

.about-content p {
    font-size: 17px;
    color: var(--text-dark);
    margin-bottom: 20px;
    line-height: 1.8;
}

.values-section {
    padding: 70px 30px;
    background-color: var(--primary-color);
}

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

.value-item {
    flex: 1;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 35px;
    border-radius: 8px;
}

.value-item h3 {
    font-size: 24px;
    color: var(--white);
    margin-bottom: 15px;
    font-weight: 700;
}

.value-item p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
}

.team-image-section {
    padding: 0;
    background-color: var(--light-bg);
}

.team-image-container {
    max-width: 1400px;
    margin: 0 auto;
    height: 500px;
    overflow: hidden;
}

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

.expertise-section {
    padding: 70px 30px;
    background-color: var(--white);
}

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

.expertise-content h2 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 25px;
    font-weight: 700;
}

.expertise-content p {
    font-size: 17px;
    color: var(--text-dark);
    margin-bottom: 20px;
    line-height: 1.8;
}

.approach-detail-section {
    padding: 70px 30px;
    background-color: var(--light-bg);
}

.approach-detail-content {
    max-width: 1200px;
    margin: 0 auto;
}

.approach-detail-content h2 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 40px;
    font-weight: 700;
    text-align: center;
}

.approach-steps {
    display: flex;
    gap: 30px;
}

.step-item {
    flex: 1;
    background-color: var(--white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.step-item h3 {
    font-size: 22px;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 700;
}

.step-item p {
    font-size: 16px;
    color: var(--text-dark);
    line-height: 1.7;
}

.cta-about-section {
    padding: 70px 30px;
    background-color: var(--primary-color);
    text-align: center;
}

.cta-about-content h2 {
    font-size: 36px;
    color: var(--white);
    margin-bottom: 15px;
    font-weight: 700;
}

.cta-about-content p {
    font-size: 18px;
    color: var(--white);
    margin-bottom: 30px;
}

.services-detail-section {
    padding: 70px 30px;
    background-color: var(--white);
}

.service-detail-card {
    max-width: 1200px;
    margin: 0 auto 60px;
    display: flex;
    gap: 50px;
    align-items: flex-start;
}

.service-detail-card:nth-child(even) {
    flex-direction: row-reverse;
}

.service-detail-image {
    flex: 1;
    background-color: var(--light-bg);
}

.service-detail-image img {
    width: 100%;
    height: auto;
    border-radius: 6px;
    object-fit: cover;
}

.service-detail-content {
    flex: 1;
}

.service-detail-content h2 {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 700;
}

.service-detail-content p {
    font-size: 16px;
    color: var(--text-dark);
    margin-bottom: 20px;
    line-height: 1.8;
}

.service-detail-features {
    margin: 25px 0;
}

.service-detail-features h3 {
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 12px;
    font-weight: 700;
}

.service-detail-features ul {
    list-style-position: inside;
    padding-left: 0;
}

.service-detail-features li {
    font-size: 15px;
    color: var(--text-dark);
    margin-bottom: 8px;
    line-height: 1.6;
}

.service-pricing-info {
    margin-top: 25px;
    padding: 20px;
    background-color: var(--light-bg);
    border-radius: 6px;
}

.price-label {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 5px;
}

.price-amount {
    font-size: 28px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.services-cta-section {
    padding: 70px 30px;
    background-color: var(--light-bg);
    text-align: center;
}

.services-cta-content h2 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 700;
}

.services-cta-content p {
    font-size: 18px;
    color: var(--text-dark);
    margin-bottom: 30px;
}

.contact-info-section {
    padding: 70px 30px;
    background-color: var(--white);
}

.contact-info-container {
    max-width: 900px;
    margin: 0 auto;
}

.contact-info-text h2 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 700;
}

.contact-info-text p {
    font-size: 17px;
    color: var(--text-dark);
    margin-bottom: 30px;
    line-height: 1.8;
}

.contact-details {
    display: flex;
    gap: 40px;
    margin-top: 40px;
}

.contact-item {
    flex: 1;
}

.contact-item h3 {
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 12px;
    font-weight: 700;
}

.contact-item p {
    font-size: 16px;
    color: var(--text-dark);
    line-height: 1.7;
}

.contact-item .note {
    font-size: 14px;
    color: var(--text-light);
    margin-top: 8px;
}

.contact-map-section {
    padding: 70px 30px;
    background-color: var(--light-bg);
}

.map-placeholder {
    max-width: 1200px;
    margin: 0 auto;
    background-color: var(--white);
    padding: 60px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.map-content p {
    font-size: 17px;
    color: var(--text-dark);
    line-height: 1.8;
    text-align: center;
}

.approach-info-section {
    padding: 70px 30px;
    background-color: var(--white);
}

.approach-info-content {
    max-width: 1200px;
    margin: 0 auto;
}

.approach-info-content h2 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 40px;
    font-weight: 700;
    text-align: center;
}

.approach-info-steps {
    display: flex;
    gap: 40px;
}

.info-step {
    flex: 1;
    background-color: var(--light-bg);
    padding: 30px;
    border-radius: 8px;
}

.info-step h3 {
    font-size: 22px;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 700;
}

.info-step p {
    font-size: 16px;
    color: var(--text-dark);
    line-height: 1.7;
}

.thanks-section {
    padding: 100px 30px;
    background-color: var(--white);
    text-align: center;
}

.thanks-container {
    max-width: 700px;
    margin: 0 auto;
}

.thanks-icon {
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
}

.thanks-container h1 {
    font-size: 42px;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 700;
}

.thanks-message {
    font-size: 18px;
    color: var(--text-dark);
    margin-bottom: 25px;
    line-height: 1.7;
}

.service-confirmation {
    margin: 20px 0;
}

.service-note {
    font-size: 16px;
    color: var(--text-light);
    background-color: var(--light-bg);
    padding: 15px 20px;
    border-radius: 6px;
    display: inline-block;
}

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

.button-primary,
.button-secondary {
    padding: 14px 30px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 5px;
    transition: transform 0.3s ease;
}

.button-primary {
    background-color: var(--primary-color);
    color: var(--white);
}

.button-primary:hover {
    transform: translateY(-2px);
}

.button-secondary {
    background-color: var(--light-bg);
    color: var(--primary-color);
}

.button-secondary:hover {
    transform: translateY(-2px);
}

.next-steps-section {
    padding: 70px 30px;
    background-color: var(--light-bg);
}

.next-steps-content {
    max-width: 1200px;
    margin: 0 auto;
}

.next-steps-content h2 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 40px;
    font-weight: 700;
    text-align: center;
}

.steps-grid {
    display: flex;
    gap: 30px;
}

.step-box {
    flex: 1;
    background-color: var(--white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.step-box h3 {
    font-size: 22px;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 700;
}

.step-box p {
    font-size: 16px;
    color: var(--text-dark);
    line-height: 1.7;
}

.legal-page {
    padding: 50px 30px;
    background-color: var(--white);
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
}

.legal-container h1 {
    font-size: 42px;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 700;
}

.last-updated {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 40px;
}

.legal-container h2 {
    font-size: 28px;
    color: var(--primary-color);
    margin-top: 40px;
    margin-bottom: 15px;
    font-weight: 700;
}

.legal-container h3 {
    font-size: 22px;
    color: var(--text-dark);
    margin-top: 25px;
    margin-bottom: 12px;
    font-weight: 600;
}

.legal-container p {
    font-size: 16px;
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 15px;
}

.legal-container ul {
    margin-left: 25px;
    margin-bottom: 20px;
}

.legal-container li {
    font-size: 16px;
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 10px;
}

.legal-container a {
    color: var(--primary-color);
    text-decoration: underline;
}

.legal-container a:hover {
    color: var(--dark-color);
}

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

.cookie-table th,
.cookie-table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.cookie-table th {
    background-color: var(--light-bg);
    font-weight: 600;
    color: var(--text-dark);
}

.cookie-table td {
    font-size: 15px;
    color: var(--text-dark);
}

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 15px;
    }

    .nav-links {
        gap: 20px;
    }

    .hero-overlay h1 {
        font-size: 36px;
    }

    .hero-overlay p {
        font-size: 17px;
    }

    .services-grid {
        gap: 30px;
    }

    .approach-content {
        flex-direction: column;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

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

    .approach-steps {
        flex-direction: column;
    }

    .service-detail-card,
    .service-detail-card:nth-child(even) {
        flex-direction: column;
    }

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

    .approach-info-steps {
        flex-direction: column;
    }

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

    .footer-content {
        flex-direction: column;
    }

    .thanks-actions {
        flex-direction: column;
    }
}