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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
}

.floating-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 1rem 0;
}

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

.brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c5f2d;
}

.ad-label {
    font-size: 0.75rem;
    color: #666;
    padding: 0.25rem 0.75rem;
    background: #f5f5f5;
    border-radius: 4px;
    margin: 0 1rem;
}

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

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

.nav-links a:hover {
    color: #2c5f2d;
}

.hero-visual {
    margin-top: 80px;
    height: 85vh;
    position: relative;
}

.page-hero {
    margin-top: 80px;
    height: 60vh;
    position: relative;
}

.page-hero.small {
    height: 40vh;
}

.hero-image-overlay {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.5));
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: #ffffff;
    max-width: 800px;
    padding: 2rem;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-content p {
    font-size: 1.5rem;
    font-weight: 300;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.intro-visual {
    margin: 4rem 0;
}

.image-text-overlay {
    min-height: 500px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
}

.image-text-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.88);
}

.image-text-overlay.dark::before {
    background: rgba(0, 0, 0, 0.65);
}

.overlay-text {
    position: relative;
    z-index: 10;
    max-width: 700px;
    text-align: center;
}

.image-text-overlay.dark .overlay-text {
    color: #ffffff;
}

.overlay-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.overlay-text p {
    font-size: 1.15rem;
    margin-bottom: 1rem;
}

.overlay-text ul {
    list-style: none;
    text-align: left;
    display: inline-block;
}

.values-list li {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
}

.values-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    font-weight: bold;
}

.services-preview {
    max-width: 1400px;
    margin: 5rem auto;
    padding: 0 2rem;
}

.services-preview h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #2c5f2d;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 3rem;
}

.service-card {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 280px;
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px 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 8px 25px rgba(0, 0, 0, 0.15);
}

.service-image {
    height: 220px;
    background-size: cover;
    background-position: center;
    background-color: #e8f5e9;
}

.service-info {
    padding: 1.5rem;
}

.service-info h3 {
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
    color: #2c5f2d;
}

.service-info p {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 1rem;
}

.price {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c5f2d;
    margin-top: 1rem;
}

.cta-section {
    text-align: center;
    margin-top: 3rem;
}

.btn-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #2c5f2d;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: background 0.3s ease, transform 0.2s ease;
}

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

.btn-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: transparent;
    color: #2c5f2d;
    border: 2px solid #2c5f2d;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: #2c5f2d;
    color: #ffffff;
}

.btn-light {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #ffffff;
    color: #2c5f2d;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.btn-light:hover {
    background: #f5f5f5;
    transform: translateY(-2px);
}

.testimonial-visual {
    margin: 5rem 0;
}

.testimonial-content {
    max-width: 800px;
}

.testimonial-content blockquote {
    font-size: 1.5rem;
    font-style: italic;
    line-height: 1.8;
    color: #ffffff;
}

.testimonial-content cite {
    display: block;
    margin-top: 1rem;
    font-size: 1.1rem;
    font-style: normal;
    font-weight: 600;
}

.about-preview {
    max-width: 1400px;
    margin: 5rem auto;
    padding: 0 2rem;
}

.split-content {
    display: flex;
    gap: 4rem;
    align-items: center;
}

.content-left,
.content-right {
    flex: 1;
}

.content-left h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #2c5f2d;
}

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

.link-arrow {
    display: inline-block;
    margin-top: 1rem;
    color: #2c5f2d;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.link-arrow:hover {
    transform: translateX(5px);
}

.link-arrow::after {
    content: ' →';
}

.content-right img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
    background-color: #e8f5e9;
}

.form-section {
    max-width: 700px;
    margin: 5rem auto;
    padding: 3rem 2rem;
    background: #f9f9f9;
    border-radius: 8px;
}

.form-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    color: #2c5f2d;
}

.form-section > p {
    text-align: center;
    margin-bottom: 2rem;
    color: #666;
}

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
}

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

.btn-submit {
    padding: 1rem 2rem;
    background: #2c5f2d;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn-submit:hover {
    background: #1e4620;
}

.disclaimer {
    max-width: 1200px;
    margin: 3rem auto;
    padding: 2rem;
    background: #f5f5f5;
    border-left: 4px solid #2c5f2d;
}

.disclaimer p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
}

.site-footer {
    background: #1a1a1a;
    color: #ffffff;
    padding: 3rem 2rem 1rem;
    margin-top: 5rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-column {
    flex: 1;
    min-width: 200px;
}

.footer-column h4 {
    margin-bottom: 1rem;
    color: #2c5f2d;
}

.footer-column p {
    font-size: 0.95rem;
    color: #ccc;
}

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

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

.footer-column a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: #ffffff;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
    color: #999;
    font-size: 0.9rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 26, 26, 0.98);
    color: #ffffff;
    padding: 1.5rem 2rem;
    display: none;
    justify-content: space-between;
    align-items: center;
    z-index: 2000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
}

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

.cookie-banner p {
    margin: 0;
    margin-right: 2rem;
    font-size: 0.95rem;
}

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

.btn-accept,
.btn-reject {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-accept {
    background: #2c5f2d;
    color: #ffffff;
}

.btn-accept:hover {
    background: #1e4620;
}

.btn-reject {
    background: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
}

.btn-reject:hover {
    background: rgba(255, 255, 255, 0.1);
}

.story-section {
    max-width: 900px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.story-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #2c5f2d;
}

.story-content p {
    font-size: 1.15rem;
    margin-bottom: 1.25rem;
    color: #555;
    line-height: 1.8;
}

.team-section {
    max-width: 1400px;
    margin: 5rem auto;
    padding: 0 2rem;
}

.team-section h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #2c5f2d;
}

.team-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.team-member {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 280px;
    text-align: center;
}

.member-image {
    height: 280px;
    background-size: cover;
    background-position: center;
    background-color: #e8f5e9;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.team-member h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #2c5f2d;
}

.team-member .role {
    font-size: 0.95rem;
    color: #888;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.team-member p {
    font-size: 0.95rem;
    color: #555;
}

.approach-section {
    max-width: 1400px;
    margin: 5rem auto;
    padding: 3rem 2rem;
    background: #f9f9f9;
}

.approach-section h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #2c5f2d;
}

.approach-content {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.approach-step {
    flex: 1 1 calc(50% - 1rem);
    min-width: 280px;
    padding: 2rem;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.approach-step h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c5f2d;
}

.approach-step p {
    font-size: 1rem;
    color: #555;
}

.cta-visual {
    margin: 5rem 0;
}

.cta-content {
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

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

.services-detail {
    max-width: 1400px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.service-block {
    display: flex;
    gap: 3rem;
    align-items: center;
    margin-bottom: 5rem;
}

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

.service-visual {
    flex: 1;
}

.service-visual img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
    background-color: #e8f5e9;
}

.service-text {
    flex: 1;
}

.service-text h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: #2c5f2d;
}

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

.service-text ul {
    list-style: none;
    margin-bottom: 1.5rem;
}

.service-text ul li {
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    position: relative;
}

.service-text ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #2c5f2d;
    font-weight: bold;
}

.price-box {
    display: flex;
    align-items: baseline;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.price-label {
    font-size: 1rem;
    color: #666;
}

.price-value {
    font-size: 2rem;
    font-weight: 700;
    color: #2c5f2d;
}

.consultation-cta {
    max-width: 900px;
    margin: 5rem auto;
    padding: 3rem 2rem;
    background: #2c5f2d;
    border-radius: 8px;
    text-align: center;
    color: #ffffff;
}

.consultation-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.consultation-cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.contact-info-section {
    max-width: 1400px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.contact-container {
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

.contact-details {
    flex: 1;
}

.contact-details h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #2c5f2d;
}

.info-block {
    margin-bottom: 2rem;
}

.info-block h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #2c5f2d;
}

.info-block p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.6;
}

.contact-visual {
    flex: 1;
}

.contact-visual img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
    background-color: #e8f5e9;
}

.service-area-section {
    max-width: 900px;
    margin: 4rem auto;
    padding: 0 2rem;
    text-align: center;
}

.service-area-section h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: #2c5f2d;
}

.service-area-section p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #555;
}

.area-list ul {
    list-style: none;
    display: inline-block;
    text-align: left;
}

.area-list ul li {
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    position: relative;
}

.area-list ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #2c5f2d;
    font-weight: bold;
}

.cta-contact {
    max-width: 900px;
    margin: 5rem auto;
    padding: 3rem 2rem;
    background: #f9f9f9;
    border-radius: 8px;
    text-align: center;
}

.cta-contact h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2c5f2d;
}

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

.thanks-section {
    max-width: 800px;
    margin: 5rem auto;
    padding: 0 2rem;
}

.thanks-content {
    text-align: center;
    padding: 3rem 2rem;
    background: #f9f9f9;
    border-radius: 8px;
}

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

.thanks-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2c5f2d;
}

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

.service-confirmation {
    font-size: 1.1rem;
    color: #2c5f2d;
    font-weight: 600;
    margin-bottom: 2rem;
}

.next-steps {
    margin: 3rem 0;
    text-align: left;
    display: inline-block;
}

.next-steps h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #2c5f2d;
}

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

.next-steps ul li {
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    position: relative;
    font-size: 1.05rem;
}

.next-steps ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #2c5f2d;
}

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

.legal-page {
    max-width: 1000px;
    margin: 100px auto 5rem;
    padding: 0 2rem;
}

.legal-content {
    padding: 2rem;
    background: #ffffff;
}

.legal-content h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: #2c5f2d;
}

.update-date {
    color: #888;
    font-size: 0.9rem;
    margin-bottom: 2rem;
}

.legal-content h2 {
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #2c5f2d;
}

.legal-content h3 {
    font-size: 1.3rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: #2c5f2d;
}

.legal-content p {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1rem;
    color: #555;
}

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

.legal-content ul li {
    margin-bottom: 0.5rem;
    color: #555;
}

.legal-content a {
    color: #2c5f2d;
    text-decoration: underline;
}

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

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

.gdpr-table th,
.cookie-table th {
    background: #2c5f2d;
    color: #ffffff;
    font-weight: 600;
}

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

@media (max-width: 1024px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

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

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

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

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

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1.2rem;
    }

    .overlay-text h2 {
        font-size: 1.8rem;
    }

    .service-card {
        flex: 1 1 100%;
    }

    .team-member {
        flex: 1 1 100%;
    }

    .approach-step {
        flex: 1 1 100%;
    }

    .cookie-banner {
        flex-direction: column;
        gap: 1rem;
    }

    .cookie-banner p {
        margin-right: 0;
    }

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

    .gdpr-table,
    .cookie-table {
        font-size: 0.85rem;
    }

    .gdpr-table th,
    .gdpr-table td,
    .cookie-table th,
    .cookie-table td {
        padding: 0.5rem;
    }
}
