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

:root {
    --primary-color: #2c5f7a;
    --secondary-color: #7a6952;
    --accent-color: #5a7c65;
    --text-dark: #1a1a1a;
    --text-light: #4a4a4a;
    --text-white: #ffffff;
    --bg-light: #f8f8f8;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: opacity 0.3s ease;
}

a:hover {
    opacity: 0.7;
}

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

.main-nav {
    background: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    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;
    gap: 1rem;
}

.nav-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

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

.nav-links a {
    font-weight: 500;
    color: var(--text-dark);
}

.ad-disclosure {
    font-size: 0.75rem;
    color: var(--text-light);
    padding: 0.3rem 0.8rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
}

.hero-split {
    display: flex;
    min-height: 85vh;
}

.hero-left {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 3rem;
    background: var(--bg-light);
}

.hero-text {
    max-width: 540px;
}

.hero-text h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.hero-text p {
    font-size: 1.15rem;
    margin-bottom: 2rem;
    color: var(--text-light);
}

.hero-right {
    flex: 1;
}

.hero-image {
    width: 100%;
    height: 100%;
    min-height: 85vh;
}

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

.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--primary-color);
    color: var(--text-white);
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.cta-primary:hover {
    background: #1e4a5f;
    opacity: 1;
    transform: translateY(-2px);
}

.about-split {
    display: flex;
    min-height: 70vh;
}

.about-split.reverse {
    flex-direction: row-reverse;
}

.split-content {
    flex: 1;
    padding: 5rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.split-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.split-content p {
    font-size: 1.05rem;
    margin-bottom: 1.2rem;
    color: var(--text-light);
}

.split-image {
    flex: 1;
    min-height: 500px;
}

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

.link-inline {
    display: inline-block;
    margin-top: 1rem;
    color: var(--primary-color);
    font-weight: 600;
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 2px;
    transition: all 0.3s ease;
}

.link-inline:hover {
    opacity: 1;
    border-bottom-color: var(--accent-color);
}

.services-grid {
    padding: 5rem 2rem;
    background: var(--bg-white);
}

.section-header-center {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.section-header-center h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.section-header-center p {
    font-size: 1.1rem;
    color: var(--text-light);
}

.services-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.service-card {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    width: calc(33.333% - 1.5rem);
    min-width: 320px;
    transition: all 0.3s ease;
}

.service-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    transform: translateY(-4px);
}

.service-image {
    width: 100%;
    height: 240px;
}

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

.service-info {
    padding: 2rem;
}

.service-info h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: var(--text-dark);
}

.service-info p {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    color: var(--text-light);
    line-height: 1.6;
}

.service-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.2rem;
}

.btn-select {
    width: 100%;
    padding: 0.9rem;
    background: var(--accent-color);
    color: var(--text-white);
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-select:hover {
    background: #4a6c55;
    transform: translateY(-2px);
}

.testimonial-section {
    padding: 5rem 2rem;
    background: var(--bg-light);
}

.testimonial-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.testimonial-item {
    flex: 1;
    min-width: 300px;
    padding: 2.5rem;
    background: var(--bg-white);
    border-left: 4px solid var(--primary-color);
    border-radius: 4px;
}

.testimonial-item p {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.testimonial-item cite {
    font-style: normal;
    font-weight: 600;
    color: var(--text-light);
}

.form-split {
    display: flex;
    min-height: 70vh;
}

.form-content {
    flex: 1;
    padding: 5rem 3rem;
    background: var(--bg-light);
}

.form-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.form-content p {
    font-size: 1.05rem;
    margin-bottom: 2.5rem;
    color: var(--text-light);
}

.contact-form {
    max-width: 500px;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.form-group input[readonly] {
    background: #f5f5f5;
    cursor: not-allowed;
}

.btn-submit {
    width: 100%;
    padding: 1rem;
    background: var(--primary-color);
    color: var(--text-white);
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.form-visual {
    flex: 1;
    min-height: 500px;
}

.form-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.trust-section {
    padding: 5rem 2rem;
    background: var(--bg-white);
}

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

.trust-content h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    color: var(--primary-color);
}

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

.trust-item {
    flex: 1;
    min-width: 250px;
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 8px;
}

.trust-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--accent-color);
}

.trust-item p {
    font-size: 0.95rem;
    color: var(--text-light);
}

.main-footer {
    background: var(--text-dark);
    color: var(--text-white);
    padding: 3rem 2rem 1rem;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto 2rem;
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
}

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

.footer-column h4 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-column p,
.footer-column a {
    display: block;
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

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

.footer-bottom p {
    margin-bottom: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
}

.disclaimer {
    font-size: 0.75rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--text-dark);
    color: var(--text-white);
    padding: 1.5rem;
    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: 2rem;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    min-width: 250px;
    font-size: 0.95rem;
}

.cookie-content a {
    color: #8ab8d0;
    text-decoration: underline;
}

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

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

.btn-accept {
    background: var(--accent-color);
    color: var(--text-white);
}

.btn-accept:hover {
    background: #4a6c55;
}

.btn-reject {
    background: transparent;
    color: var(--text-white);
    border: 1px solid var(--text-white);
}

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

.page-header {
    padding: 4rem 2rem 3rem;
    text-align: center;
    background: var(--bg-light);
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 0.8rem;
    color: var(--primary-color);
}

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

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

.service-detail-card {
    margin-bottom: 4rem;
}

.service-detail-split {
    display: flex;
    max-width: 1300px;
    margin: 0 auto;
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
}

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

.service-detail-image {
    flex: 1;
    min-width: 400px;
}

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

.service-detail-content {
    flex: 1;
    padding: 3rem;
}

.service-detail-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.service-detail-content h3 {
    font-size: 1.3rem;
    margin-top: 2rem;
    margin-bottom: 0.8rem;
    color: var(--accent-color);
}

.service-detail-content p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

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

.service-detail-content ul li {
    margin-bottom: 0.7rem;
    color: var(--text-light);
}

.service-detail-price {
    display: flex;
    align-items: baseline;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 6px;
}

.price-label {
    font-size: 1rem;
    color: var(--text-light);
}

.price-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.btn-select-large {
    padding: 1rem 2.5rem;
    background: var(--accent-color);
    color: var(--text-white);
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-select-large:hover {
    background: #4a6c55;
    transform: translateY(-2px);
}

.info-section {
    padding: 3rem 2rem;
    background: var(--bg-light);
}

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

.info-container h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.info-container p {
    font-size: 1rem;
    margin-bottom: 1.2rem;
    color: var(--text-light);
}

.contact-split {
    display: flex;
    min-height: 70vh;
}

.contact-info {
    flex: 1;
    padding: 4rem 3rem;
    background: var(--bg-light);
}

.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.contact-info p {
    font-size: 1.05rem;
    margin-bottom: 2rem;
    color: var(--text-light);
}

.contact-details {
    margin-bottom: 3rem;
}

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

.contact-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--accent-color);
}

.contact-item p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-dark);
}

.contact-note {
    padding: 1.5rem;
    background: var(--bg-white);
    border-left: 4px solid var(--primary-color);
    border-radius: 4px;
}

.contact-note p {
    font-size: 0.95rem;
    margin: 0;
}

.contact-visual {
    flex: 1;
    min-height: 500px;
}

.contact-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.location-section {
    padding: 4rem 2rem;
    background: var(--bg-white);
}

.location-container {
    max-width: 1000px;
    margin: 0 auto;
}

.location-container h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.location-container p {
    font-size: 1.05rem;
    margin-bottom: 2.5rem;
    color: var(--text-light);
}

.location-directions {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.direction-item {
    flex: 1;
    min-width: 200px;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 6px;
}

.direction-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--accent-color);
}

.direction-item p {
    font-size: 0.95rem;
    margin: 0;
}

.thanks-section {
    min-height: 70vh;
    padding: 5rem 2rem;
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-container {
    max-width: 800px;
    text-align: center;
}

.thanks-icon {
    font-size: 4rem;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.thanks-container h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.thanks-message {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    color: var(--text-light);
}

.service-confirmation {
    padding: 2rem;
    background: var(--bg-white);
    border-radius: 8px;
    margin-bottom: 3rem;
    display: none;
}

.service-confirmation h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--accent-color);
}

.service-name {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.service-price {
    font-size: 1.1rem;
    color: var(--primary-color);
}

.next-steps {
    margin-bottom: 3rem;
}

.next-steps h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.steps-grid {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.step-item {
    flex: 1;
    min-width: 150px;
    max-width: 180px;
    padding: 1.5rem;
    background: var(--bg-white);
    border-radius: 8px;
    text-align: center;
}

.step-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: var(--accent-color);
}

.step-item p {
    font-size: 0.9rem;
    color: var(--text-light);
}

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

.btn-primary,
.btn-secondary {
    padding: 1rem 2rem;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

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

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--text-white);
    opacity: 1;
}

.legal-page {
    padding: 3rem 2rem 5rem;
}

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

.legal-container h1 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.legal-intro {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    color: var(--text-light);
}

.legal-container h2 {
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: var(--accent-color);
}

.legal-container h3 {
    font-size: 1.3rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    color: var(--text-dark);
}

.legal-container h4 {
    font-size: 1.1rem;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.legal-container p {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: var(--text-light);
    line-height: 1.7;
}

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

.legal-container ul li {
    margin-bottom: 0.7rem;
    color: var(--text-light);
}

.legal-date {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    font-style: italic;
    color: var(--text-light);
}

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

.cookie-table thead {
    background: var(--bg-light);
}

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

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

.cookie-table td {
    color: var(--text-light);
}

.values-section {
    padding: 5rem 2rem;
    background: var(--bg-white);
}

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

.values-container h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    color: var(--primary-color);
}

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

.value-item {
    flex: 1;
    min-width: 250px;
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 8px;
}

.value-item h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: var(--accent-color);
}

.value-item p {
    font-size: 1rem;
    color: var(--text-light);
}

.team-split {
    display: flex;
    min-height: 60vh;
}

.team-split.reverse {
    flex-direction: row-reverse;
}

.approach-section {
    padding: 5rem 2rem;
    background: var(--bg-light);
}

.approach-container {
    max-width: 1000px;
    margin: 0 auto;
}

.approach-container h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.approach-container > p {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    color: var(--text-light);
}

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

.approach-step {
    flex: 1;
    min-width: 250px;
    padding: 2rem;
    background: var(--bg-white);
    border-radius: 8px;
}

.approach-step h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: var(--accent-color);
}

.approach-step p {
    font-size: 1rem;
    color: var(--text-light);
}

@media (max-width: 1024px) {
    .hero-split,
    .about-split,
    .form-split,
    .contact-split,
    .service-detail-split {
        flex-direction: column;
    }

    .about-split.reverse,
    .team-split.reverse {
        flex-direction: column;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .service-card {
        width: calc(50% - 1rem);
    }

    .service-detail-image {
        min-width: 100%;
        min-height: 400px;
    }
}

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        align-items: flex-start;
    }

    .nav-links {
        flex-wrap: wrap;
        gap: 1rem;
    }

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

    .page-header h1 {
        font-size: 2.2rem;
    }

    .service-card {
        width: 100%;
    }

    .footer-container {
        flex-direction: column;
        gap: 2rem;
    }

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

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

    .step-item {
        max-width: 100%;
    }
}