* {
    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;
}

.header {
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c5f4f;
}

.nav-main {
    display: flex;
    gap: 2rem;
}

.nav-main a {
    color: #2c3e50;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-main a:hover {
    color: #2c5f4f;
}

.ad-disclosure {
    font-size: 0.75rem;
    color: #7f8c8d;
    background-color: #f8f9fa;
    padding: 0.4rem 0.8rem;
    border-radius: 4px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 1.5rem;
    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: 2rem;
}

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

.cookie-content a {
    color: #3498db;
}

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

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

.btn-accept {
    background-color: #27ae60;
    color: #ffffff;
}

.btn-accept:hover {
    background-color: #229954;
}

.btn-reject {
    background-color: #7f8c8d;
    color: #ffffff;
}

.btn-reject:hover {
    background-color: #6c7a7b;
}

.hero-split {
    display: flex;
    min-height: 600px;
}

.hero-text-side {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem 3rem;
    background-color: #f8faf9;
}

.hero-text-side h1 {
    font-size: 3rem;
    line-height: 1.2;
    color: #2c5f4f;
    margin-bottom: 1.5rem;
}

.hero-text-side p {
    font-size: 1.2rem;
    color: #566573;
    margin-bottom: 2rem;
    max-width: 600px;
}

.hero-image-side {
    flex: 1;
    overflow: hidden;
}

.hero-image-side img {
    width: 100%;
    height: 100%;
    display: block;
}

.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #2c5f4f;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s;
    align-self: flex-start;
}

.cta-primary:hover {
    background-color: #1f4538;
}

.intro-section {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

.intro-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.intro-image {
    flex: 1;
    overflow: hidden;
    border-radius: 8px;
}

.intro-image img {
    width: 100%;
    height: auto;
    display: block;
}

.intro-text {
    flex: 1;
}

.intro-text h2 {
    font-size: 2.2rem;
    color: #2c5f4f;
    margin-bottom: 1.5rem;
}

.intro-text p {
    font-size: 1.1rem;
    color: #566573;
    margin-bottom: 1.2rem;
}

.values-split {
    display: flex;
    min-height: 500px;
}

.values-text-side {
    flex: 1;
    padding: 4rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.values-text-side h2 {
    font-size: 2.5rem;
    color: #2c5f4f;
    margin-bottom: 1.5rem;
}

.values-text-side p {
    font-size: 1.1rem;
    color: #566573;
    margin-bottom: 1.5rem;
}

.values-list {
    list-style: none;
    padding-left: 0;
}

.values-list li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
    color: #2c3e50;
    font-size: 1.05rem;
}

.values-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
    font-size: 1.2rem;
}

.values-image-side {
    flex: 1;
    overflow: hidden;
}

.values-image-side img {
    width: 100%;
    height: 100%;
    display: block;
}

.services-section {
    padding: 5rem 2rem;
    background-color: #f8faf9;
}

.services-header {
    text-align: center;
    margin-bottom: 3rem;
}

.services-header h2 {
    font-size: 2.5rem;
    color: #2c5f4f;
    margin-bottom: 1rem;
}

.services-header p {
    font-size: 1.2rem;
    color: #566573;
}

.services-grid {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.service-card {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 300px;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

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

.service-image {
    overflow: hidden;
    height: 240px;
}

.service-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.service-content {
    padding: 1.8rem;
}

.service-content h3 {
    font-size: 1.5rem;
    color: #2c5f4f;
    margin-bottom: 1rem;
}

.service-content p {
    color: #566573;
    margin-bottom: 1.5rem;
}

.service-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c5f4f;
    margin-bottom: 1.5rem;
}

.btn-select-service {
    width: 100%;
    padding: 0.9rem;
    background-color: #2c5f4f;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-select-service:hover {
    background-color: #1f4538;
}

.testimonial-split {
    display: flex;
    min-height: 500px;
}

.testimonial-image-side {
    flex: 1;
    overflow: hidden;
}

.testimonial-image-side img {
    width: 100%;
    height: 100%;
    display: block;
}

.testimonial-text-side {
    flex: 1;
    padding: 4rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #f8faf9;
}

.testimonial-content blockquote {
    border-left: 4px solid #2c5f4f;
    padding-left: 2rem;
    margin-bottom: 2.5rem;
}

.testimonial-content p {
    font-size: 1.1rem;
    color: #2c3e50;
    font-style: italic;
    margin-bottom: 1rem;
}

.testimonial-content cite {
    font-style: normal;
    color: #7f8c8d;
    font-size: 0.95rem;
}

.form-section {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

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

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

.form-container > p {
    text-align: center;
    color: #566573;
    margin-bottom: 2.5rem;
}

.inquiry-form {
    background-color: #f8faf9;
    padding: 2.5rem;
    border-radius: 8px;
}

.form-group {
    margin-bottom: 1.5rem;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 1px solid #d0d7de;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
}

.form-group textarea {
    resize: vertical;
}

.checkbox-group label {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-weight: 400;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 0.3rem;
}

.checkbox-group a {
    color: #2c5f4f;
}

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

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

.info-section {
    padding: 3rem 2rem;
    background-color: #f8faf9;
}

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

.info-content h2 {
    font-size: 1.8rem;
    color: #2c5f4f;
    margin-bottom: 1rem;
}

.disclaimer {
    font-size: 0.9rem;
    color: #7f8c8d;
    line-height: 1.7;
}

.footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 3rem 2rem 1rem;
}

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

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

.footer-column h4 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

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

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

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

.footer-column ul li a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s;
}

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

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid #34495e;
    text-align: center;
    color: #95a5a6;
    font-size: 0.9rem;
}

.page-hero {
    background: linear-gradient(135deg, #2c5f4f 0%, #1f4538 100%);
    padding: 4rem 2rem;
    text-align: center;
    color: #ffffff;
}

.page-hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-hero-content p {
    font-size: 1.3rem;
    opacity: 0.9;
}

.about-split {
    display: flex;
    min-height: 500px;
}

.about-text-side {
    flex: 1;
    padding: 4rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-text-side h2 {
    font-size: 2.5rem;
    color: #2c5f4f;
    margin-bottom: 1.5rem;
}

.about-text-side p {
    font-size: 1.1rem;
    color: #566573;
    margin-bottom: 1.2rem;
}

.about-image-side {
    flex: 1;
    overflow: hidden;
}

.about-image-side img {
    width: 100%;
    height: 100%;
    display: block;
}

.values-section {
    padding: 5rem 2rem;
    background-color: #f8faf9;
}

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

.values-container h2 {
    font-size: 2.5rem;
    color: #2c5f4f;
    text-align: center;
    margin-bottom: 3rem;
}

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

.value-item {
    flex: 1 1 calc(50% - 1rem);
    min-width: 280px;
    padding: 2rem;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.value-item h3 {
    font-size: 1.5rem;
    color: #2c5f4f;
    margin-bottom: 1rem;
}

.value-item p {
    color: #566573;
    line-height: 1.7;
}

.process-split {
    display: flex;
    min-height: 550px;
}

.process-image-side {
    flex: 1;
    overflow: hidden;
}

.process-image-side img {
    width: 100%;
    height: 100%;
    display: block;
}

.process-text-side {
    flex: 1;
    padding: 4rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #ffffff;
}

.process-text-side h2 {
    font-size: 2.5rem;
    color: #2c5f4f;
    margin-bottom: 2rem;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.process-step h3 {
    font-size: 1.3rem;
    color: #2c5f4f;
    margin-bottom: 0.5rem;
}

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

.team-section {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

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

.team-container h2 {
    font-size: 2.5rem;
    color: #2c5f4f;
    margin-bottom: 1.5rem;
    text-align: center;
}

.team-container p {
    font-size: 1.1rem;
    color: #566573;
    margin-bottom: 1.2rem;
    text-align: center;
}

.cta-section {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #2c5f4f 0%, #1f4538 100%);
    text-align: center;
}

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

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

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #ffffff;
    color: #2c5f4f;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s;
}

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

.services-detailed {
    padding: 3rem 2rem;
}

.service-detail-split {
    display: flex;
    max-width: 1200px;
    margin: 0 auto 4rem;
    min-height: 450px;
}

.service-detail-split.reverse {
    flex-direction: row-reverse;
}

.service-detail-text {
    flex: 1;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-detail-text h2 {
    font-size: 2.2rem;
    color: #2c5f4f;
    margin-bottom: 1.5rem;
}

.service-detail-text p {
    font-size: 1.05rem;
    color: #566573;
    margin-bottom: 1.5rem;
}

.service-detail-text ul {
    margin-bottom: 2rem;
    padding-left: 1.5rem;
}

.service-detail-text ul li {
    color: #2c3e50;
    margin-bottom: 0.7rem;
}

.service-price-large {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c5f4f;
    margin-bottom: 1.5rem;
}

.service-detail-image {
    flex: 1;
    overflow: hidden;
}

.service-detail-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.additional-services {
    padding: 5rem 2rem;
    background-color: #f8faf9;
}

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

.additional-container h2 {
    font-size: 2.5rem;
    color: #2c5f4f;
    text-align: center;
    margin-bottom: 3rem;
}

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

.additional-item {
    flex: 1 1 calc(50% - 1rem);
    min-width: 280px;
    padding: 2rem;
    background-color: #ffffff;
    border-radius: 8px;
}

.additional-item h3 {
    font-size: 1.5rem;
    color: #2c5f4f;
    margin-bottom: 1rem;
}

.additional-item p {
    color: #566573;
    line-height: 1.7;
}

.contact-section {
    padding: 3rem 2rem;
}

.contact-split {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    min-height: 500px;
}

.contact-info-side {
    flex: 1;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-info-side h2 {
    font-size: 2.5rem;
    color: #2c5f4f;
    margin-bottom: 2rem;
}

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

.contact-block h3 {
    font-size: 1.3rem;
    color: #2c5f4f;
    margin-bottom: 0.7rem;
}

.contact-block p {
    color: #566573;
    line-height: 1.7;
}

.contact-map-side {
    flex: 1;
    overflow: hidden;
}

.contact-map-side img {
    width: 100%;
    height: 100%;
    display: block;
}

.service-area {
    padding: 5rem 2rem;
    background-color: #f8faf9;
}

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

.service-area-container h2 {
    font-size: 2.5rem;
    color: #2c5f4f;
    margin-bottom: 1.5rem;
    text-align: center;
}

.service-area-container p {
    font-size: 1.1rem;
    color: #566573;
    margin-bottom: 1.5rem;
    text-align: center;
}

.area-list {
    max-width: 600px;
    margin: 2rem auto;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.area-list li {
    background-color: #ffffff;
    padding: 0.8rem 1.5rem;
    border-radius: 6px;
    color: #2c5f4f;
    font-weight: 500;
}

.thanks-section {
    padding: 5rem 2rem;
    min-height: 60vh;
}

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

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

.thanks-content h1 {
    font-size: 2.8rem;
    color: #27ae60;
    margin-bottom: 1.5rem;
}

.thanks-content > p {
    font-size: 1.2rem;
    color: #566573;
    margin-bottom: 2rem;
}

.thanks-service {
    background-color: #f8faf9;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 2rem 0;
    font-size: 1.1rem;
    color: #2c5f4f;
}

.thanks-info {
    margin: 3rem 0;
    text-align: left;
}

.thanks-info h2 {
    font-size: 2rem;
    color: #2c5f4f;
    margin-bottom: 1.5rem;
    text-align: center;
}

.thanks-info ol {
    max-width: 600px;
    margin: 0 auto;
    padding-left: 1.5rem;
}

.thanks-info li {
    color: #566573;
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

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

.btn-primary,
.btn-secondary {
    padding: 1rem 2rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s;
}

.btn-primary {
    background-color: #2c5f4f;
    color: #ffffff;
}

.btn-primary:hover {
    background-color: #1f4538;
}

.btn-secondary {
    background-color: #ecf0f1;
    color: #2c5f4f;
    border: 2px solid #2c5f4f;
}

.btn-secondary:hover {
    background-color: #d5dbdb;
}

.legal-page {
    padding: 3rem 2rem;
    min-height: 70vh;
}

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

.legal-container h1 {
    font-size: 2.8rem;
    color: #2c5f4f;
    margin-bottom: 2rem;
}

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

.legal-container h3 {
    font-size: 1.3rem;
    color: #2c5f4f;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
}

.legal-container p {
    color: #566573;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.legal-container ul {
    margin-bottom: 1rem;
    padding-left: 2rem;
}

.legal-container li {
    color: #566573;
    margin-bottom: 0.5rem;
}

.legal-container a {
    color: #2c5f4f;
    text-decoration: underline;
}

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

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

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

.cookie-table td {
    color: #566573;
}

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

    .nav-main {
        gap: 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero-split,
    .values-split,
    .testimonial-split,
    .about-split,
    .process-split,
    .service-detail-split,
    .contact-split {
        flex-direction: column;
    }

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

    .hero-text-side h1,
    .page-hero-content h1 {
        font-size: 2rem;
    }

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

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

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