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

:root {
    --primary-color: #2d5016;
    --secondary-color: #7a9b57;
    --accent-color: #c8a882;
    --text-dark: #1a1a1a;
    --text-light: #f4f4f4;
    --bg-light: #fafaf8;
    --bg-card: #ffffff;
    --border-color: #e0e0e0;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-light);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(26, 26, 26, 0.95);
    color: var(--text-light);
    padding: 1.5rem;
    z-index: 9999;
    display: none;
    flex-direction: column;
    align-items: center;
}

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

.cookie-content {
    max-width: 1200px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.cookie-content p {
    text-align: center;
    margin: 0;
}

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

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

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

.btn-accept:hover {
    background-color: var(--secondary-color);
}

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

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

.nav-asymmetric {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background-color: var(--bg-card);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

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

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

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

.ad-disclosure {
    font-size: 0.75rem;
    color: #666;
    padding: 0.25rem 0.75rem;
    background-color: #f0f0f0;
    border-radius: 3px;
}

.hero-offset {
    display: flex;
    align-items: center;
    min-height: 85vh;
    padding: 3rem 5%;
    gap: 4rem;
    background-color: var(--bg-light);
}

.hero-text-block {
    flex: 1;
    max-width: 550px;
}

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

.hero-text-block p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #555;
}

.hero-image-offset {
    flex: 1;
    margin-top: -5rem;
}

.hero-image-offset img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

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

.cta-primary:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
}

.cta-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: transparent;
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    border: 2px solid var(--primary-color);
    transition: all 0.3s ease;
}

.cta-secondary:hover {
    background-color: var(--primary-color);
    color: var(--text-light);
}

.intro-irregular {
    display: flex;
    gap: 3rem;
    padding: 5rem 5%;
    align-items: center;
    background-color: var(--bg-card);
}

.intro-left {
    flex: 0.8;
}

.intro-left img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
}

.intro-right {
    flex: 1.2;
}

.intro-right h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    line-height: 1.3;
}

.intro-right p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: #444;
}

.services-staggered {
    padding: 5rem 5%;
    background-color: var(--bg-light);
}

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

.service-grid-offset {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.service-card {
    background-color: var(--bg-card);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

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

.card-1 {
    width: calc(40% - 1rem);
    margin-top: 2rem;
}

.card-2 {
    width: calc(55% - 1rem);
}

.card-3 {
    width: calc(48% - 1rem);
    margin-top: -3rem;
}

.card-4 {
    width: calc(50% - 1rem);
    margin-top: 1rem;
}

.card-5 {
    width: calc(45% - 1rem);
    margin-top: -2rem;
}

.service-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    background-color: var(--secondary-color);
}

.service-card h3 {
    padding: 1.5rem 1.5rem 0.5rem;
    font-size: 1.4rem;
    color: var(--primary-color);
}

.service-card p {
    padding: 0 1.5rem 1rem;
    color: #555;
}

.service-card .price {
    padding: 0 1.5rem 1rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-color);
}

.cta-select {
    margin: 0 1.5rem 1.5rem;
    padding: 0.75rem 1.5rem;
    background-color: var(--secondary-color);
    color: var(--text-light);
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-select:hover {
    background-color: var(--primary-color);
}

.form-section-offset {
    display: flex;
    gap: 3rem;
    padding: 5rem 5%;
    background-color: var(--bg-card);
    align-items: stretch;
}

.form-container {
    flex: 1;
}

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

.form-container p {
    margin-bottom: 2rem;
    color: #555;
}

.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 select {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

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

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

.btn-submit:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
}

.form-side-visual {
    flex: 0.8;
    margin-top: 4rem;
}

.form-side-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.trust-block {
    padding: 4rem 5%;
    background-color: #f0f4ec;
    text-align: center;
}

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

.trust-block p {
    max-width: 900px;
    margin: 0 auto 1rem;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
}

.citation {
    color: var(--secondary-color);
    font-weight: 600;
    text-decoration: none;
}

.citation:hover {
    text-decoration: underline;
}

.disclaimer-section {
    padding: 3rem 5%;
    background-color: #fef9f3;
    border-left: 4px solid var(--accent-color);
}

.disclaimer-text {
    max-width: 1000px;
    margin: 0 auto;
    font-size: 0.95rem;
    color: #666;
    line-height: 1.7;
    font-style: italic;
}

.footer-asymmetric {
    display: flex;
    justify-content: space-between;
    gap: 3rem;
    padding: 4rem 5%;
    background-color: var(--primary-color);
    color: var(--text-light);
}

.footer-column h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

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

.footer-column p {
    margin-bottom: 0.5rem;
    line-height: 1.6;
    font-size: 0.95rem;
}

.footer-column a {
    display: block;
    color: var(--text-light);
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

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

.reference-item {
    font-size: 0.85rem;
    margin-bottom: 0.75rem;
    line-height: 1.5;
}

.about-hero-offset {
    padding: 4rem 5%;
    background-color: var(--bg-card);
}

.about-intro {
    max-width: 800px;
    margin-bottom: 3rem;
}

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

.about-intro p {
    font-size: 1.2rem;
    color: #555;
    line-height: 1.7;
}

.about-hero-offset img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 8px;
}

.team-asymmetric {
    display: flex;
    gap: 4rem;
    padding: 5rem 5%;
    background-color: var(--bg-light);
    align-items: center;
}

.team-text {
    flex: 1.3;
}

.team-text h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.team-text p {
    margin-bottom: 1.2rem;
    font-size: 1.1rem;
    color: #444;
    line-height: 1.7;
}

.team-visual {
    flex: 0.7;
}

.team-visual img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
}

.values-section {
    padding: 5rem 5%;
    background-color: var(--bg-card);
}

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

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

.value-block {
    width: calc(50% - 1rem);
    padding: 2rem;
    background-color: #f9faf7;
    border-radius: 8px;
    border-left: 4px solid var(--secondary-color);
}

.value-block h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.value-block p {
    color: #555;
    line-height: 1.6;
}

.cta-about {
    padding: 4rem 5%;
    background-color: var(--secondary-color);
    text-align: center;
}

.cta-about h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.cta-about p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--text-light);
}

.services-hero {
    padding: 4rem 5% 3rem;
    background-color: var(--bg-card);
    text-align: center;
}

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

.services-hero p {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.2rem;
    color: #555;
}

.services-detailed {
    padding: 3rem 5%;
    background-color: var(--bg-light);
}

.service-detail-card {
    display: flex;
    gap: 3rem;
    margin-bottom: 4rem;
    background-color: var(--bg-card);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    align-items: center;
}

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

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

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

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

.service-detail-content p {
    margin-bottom: 1rem;
    color: #555;
    line-height: 1.7;
}

.service-price {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--accent-color);
    margin: 1.5rem 0;
}

.form-section-services {
    padding: 5rem 5%;
    background-color: var(--bg-card);
    max-width: 700px;
    margin: 0 auto;
}

.form-section-services h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    text-align: center;
}

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

.contact-hero {
    padding: 4rem 5% 3rem;
    background-color: var(--bg-card);
    text-align: center;
}

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

.contact-hero p {
    font-size: 1.2rem;
    color: #555;
}

.contact-info-layout {
    display: flex;
    gap: 4rem;
    padding: 4rem 5%;
    background-color: var(--bg-light);
    align-items: flex-start;
}

.contact-details-block {
    flex: 1;
}

.contact-details-block h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

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

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

.contact-item p {
    font-size: 1.1rem;
    color: #444;
    line-height: 1.7;
}

.contact-visual-block {
    flex: 0.8;
}

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

.additional-info {
    padding: 4rem 5%;
    background-color: var(--bg-card);
    max-width: 900px;
    margin: 0 auto;
}

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

.additional-info p {
    margin-bottom: 1.2rem;
    font-size: 1.1rem;
    color: #555;
    line-height: 1.7;
}

.thanks-section {
    display: flex;
    gap: 4rem;
    padding: 5rem 5%;
    min-height: 60vh;
    align-items: center;
    background-color: var(--bg-light);
}

.thanks-content {
    flex: 1;
}

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

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

.thanks-actions {
    margin-top: 2.5rem;
    display: flex;
    gap: 1.5rem;
}

.thanks-visual {
    flex: 0.7;
}

.thanks-visual img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 4rem 5%;
    background-color: var(--bg-light);
}

.legal-content h1 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

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

.legal-content h3 {
    font-size: 1.4rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

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

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

.legal-content li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
    color: #444;
}

@media (max-width: 768px) {
    .hero-offset {
        flex-direction: column;
    }

    .hero-image-offset {
        margin-top: 0;
    }

    .intro-irregular,
    .team-asymmetric,
    .form-section-offset,
    .contact-info-layout,
    .thanks-section {
        flex-direction: column;
    }

    .service-grid-offset .service-card {
        width: 100% !important;
        margin-top: 0 !important;
    }

    .service-detail-card {
        flex-direction: column;
    }

    .value-block {
        width: 100%;
    }

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

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