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

:root {
    --primary-color: #2c4f3f;
    --secondary-color: #d4a574;
    --text-dark: #1a1a1a;
    --text-medium: #4a4a4a;
    --text-light: #7a7a7a;
    --bg-light: #f8f6f3;
    --bg-white: #ffffff;
    --accent-warm: #e8d5c4;
    --border-color: #d4d4d4;
}

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

h1, h2, h3, h4 {
    font-weight: 600;
    line-height: 1.3;
}

h1 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2.2rem;
    margin-bottom: 1.2rem;
}

h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
}

h4 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
}

p {
    margin-bottom: 1rem;
    color: var(--text-medium);
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--secondary-color);
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--text-dark);
    color: var(--bg-white);
    padding: 1.5rem;
    z-index: 9999;
    display: none;
}

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    color: var(--bg-white);
}

.cookie-content a {
    color: var(--secondary-color);
}

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

.cookie-accept,
.cookie-reject {
    padding: 0.6rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

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

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

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

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

.nav-floating {
    position: fixed;
    top: 2rem;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 2rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 2rem;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    max-width: 90%;
    flex-wrap: wrap;
}

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

.nav-ad-label {
    font-size: 0.75rem;
    color: var(--text-light);
    padding: 0.3rem 0.8rem;
    background-color: var(--accent-warm);
    border-radius: 15px;
}

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

.nav-links a {
    color: var(--text-medium);
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

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

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--primary-color);
    transition: all 0.3s ease;
}

.hero-asymmetric {
    min-height: 90vh;
    display: flex;
    align-items: center;
    padding: 8rem 2rem 4rem;
    background-color: var(--bg-light);
}

.hero-offset-content {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    align-items: center;
    gap: 3rem;
    position: relative;
}

.hero-text-block {
    flex: 1;
    padding-right: 2rem;
    z-index: 2;
}

.hero-image-overlap {
    flex: 1.2;
    position: relative;
}

.hero-image-overlap img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    background-color: var(--accent-warm);
}

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

.cta-primary:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.intro-asymmetric {
    padding: 6rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.intro-left {
    flex: 0.8;
}

.intro-left img {
    width: 100%;
    height: 650px;
    object-fit: cover;
    border-radius: 4px;
    background-color: var(--accent-warm);
}

.intro-right {
    flex: 1.2;
}

.services-offset {
    padding: 6rem 2rem;
    background-color: var(--bg-light);
}

.section-title-asymmetric {
    max-width: 1400px;
    margin: 0 auto 4rem;
    padding-left: 8%;
}

.services-grid-asymmetric {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
}

.service-card {
    flex: 1 1 calc(50% - 1.25rem);
    min-width: 300px;
    background-color: var(--bg-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    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.12);
}

.service-card.offset-1 {
    margin-left: 5%;
}

.service-card.offset-2 {
    margin-right: 5%;
}

.service-card.offset-3 {
    margin-left: 10%;
}

.service-card.offset-4 {
    margin-right: 8%;
}

.service-card.offset-5 {
    margin-left: 3%;
}

.service-card.offset-6 {
    margin-right: 3%;
}

.service-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    background-color: var(--accent-warm);
}

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

.service-content {
    padding: 2rem;
}

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

.service-select {
    width: 100%;
    padding: 0.9rem 1.5rem;
    background-color: var(--secondary-color);
    color: var(--text-dark);
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.service-select:hover {
    background-color: var(--primary-color);
    color: var(--bg-white);
}

.form-section-asymmetric {
    padding: 6rem 2rem;
    background-color: var(--bg-white);
}

.form-wrapper-offset {
    max-width: 900px;
    margin: 0 auto;
    margin-left: 15%;
}

.form-intro {
    margin-bottom: 3rem;
}

.contact-form {
    background-color: var(--bg-light);
    padding: 3rem;
    border-radius: 8px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    background-color: var(--bg-white);
    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);
}

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

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

.trust-asymmetric {
    padding: 5rem 2rem;
    background-color: var(--accent-warm);
}

.trust-content-offset {
    max-width: 800px;
    margin: 0 auto;
    margin-right: 15%;
}

.trust-content-offset a {
    color: var(--primary-color);
    font-weight: 600;
}

.footer-asymmetric {
    background-color: var(--text-dark);
    color: var(--bg-white);
    padding: 4rem 2rem 2rem;
}

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

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

.footer-column h4 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.footer-column p {
    color: var(--bg-light);
}

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

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

.footer-column ul li a {
    color: var(--bg-light);
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: var(--secondary-color);
}

.footer-disclaimer {
    max-width: 1400px;
    margin: 0 auto 2rem;
    padding: 1.5rem;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
}

.footer-disclaimer p {
    font-size: 0.85rem;
    color: var(--bg-light);
    line-height: 1.6;
}

.footer-references {
    max-width: 1400px;
    margin: 0 auto 2rem;
    padding: 1.5rem;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
}

.footer-references h4 {
    color: var(--secondary-color);
    font-size: 1rem;
    margin-bottom: 1rem;
}

.footer-references ol {
    padding-left: 1.5rem;
}

.footer-references ol li {
    margin-bottom: 0.8rem;
    color: var(--bg-light);
    font-size: 0.9rem;
}

.footer-references ol li a {
    color: var(--secondary-color);
}

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

.footer-bottom p {
    color: var(--bg-light);
    font-size: 0.9rem;
}

.about-hero-offset {
    padding: 8rem 2rem 4rem;
    background-color: var(--bg-light);
    display: flex;
    align-items: center;
    gap: 3rem;
}

.about-hero-content {
    max-width: 1400px;
    margin: 0 auto;
    flex: 1;
    padding-right: 3rem;
}

.about-hero-image {
    flex: 1;
}

.about-hero-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 8px;
    background-color: var(--accent-warm);
}

.about-story-asymmetric {
    padding: 6rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.story-block-left {
    flex: 1.2;
}

.story-image-right {
    flex: 0.8;
}

.story-image-right img {
    width: 100%;
    height: 550px;
    object-fit: cover;
    border-radius: 4px;
    background-color: var(--accent-warm);
}

.values-offset {
    padding: 6rem 2rem;
    background-color: var(--bg-light);
}

.values-offset h2 {
    max-width: 1400px;
    margin: 0 auto 3rem;
    padding-left: 10%;
}

.values-grid-asymmetric {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.value-card {
    flex: 1 1 calc(50% - 1rem);
    min-width: 280px;
    padding: 2rem;
    background-color: var(--bg-white);
    border-radius: 6px;
}

.value-card:nth-child(odd) {
    margin-left: 5%;
}

.value-card:nth-child(even) {
    margin-right: 5%;
}

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

.team-intro-offset {
    margin-bottom: 3rem;
    padding-left: 15%;
}

.team-structure {
    padding: 0 10%;
}

.approach-offset {
    padding: 6rem 2rem;
    background-color: var(--bg-light);
}

.approach-content {
    max-width: 900px;
    margin: 0 auto;
    margin-left: 20%;
}

.approach-step {
    margin-bottom: 3rem;
    padding-left: 2rem;
    border-left: 3px solid var(--secondary-color);
}

.services-hero {
    padding: 8rem 2rem 4rem;
    background-color: var(--bg-light);
}

.services-hero-content-offset {
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 12%;
}

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

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

.service-detail-block.left-align {
    padding-right: 8%;
}

.service-detail-block.right-align {
    padding-left: 8%;
}

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

.service-detail-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
    background-color: var(--accent-warm);
}

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

.service-features {
    list-style: none;
    margin: 1.5rem 0;
}

.service-features li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.service-pricing {
    display: flex;
    flex-direction: column;
    margin: 1.5rem 0;
}

.price-label {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 0.3rem;
}

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

.services-cta-asymmetric {
    padding: 5rem 2rem;
    background-color: var(--accent-warm);
}

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

.contact-hero-asymmetric {
    padding: 8rem 2rem 4rem;
    background-color: var(--bg-light);
    text-align: center;
}

.contact-layout-offset {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info-block {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    margin-left: 10%;
}

.info-item {
    flex: 1 1 calc(50% - 1.5rem);
    min-width: 250px;
}

.info-item h3 {
    color: var(--primary-color);
    margin-bottom: 0.8rem;
}

.contact-additional {
    padding: 4rem 2rem;
    background-color: var(--bg-light);
}

.additional-content-offset {
    max-width: 900px;
    margin: 0 auto;
    margin-right: 15%;
}

.additional-content-offset ul {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.additional-content-offset ul li {
    margin-bottom: 0.8rem;
}

.thanks-hero-asymmetric {
    padding: 10rem 2rem 5rem;
    background-color: var(--bg-light);
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.thanks-info {
    margin-top: 2rem;
    padding: 1.5rem;
    background-color: var(--accent-warm);
    border-radius: 6px;
}

.thanks-next-steps {
    padding: 5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.next-steps-content h2 {
    text-align: center;
    margin-bottom: 3rem;
}

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

.step-item {
    flex: 1 1 calc(33.333% - 1.333rem);
    min-width: 250px;
    padding: 2rem;
    background-color: var(--bg-light);
    border-radius: 6px;
}

.step-number {
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.thanks-explore {
    padding: 4rem 2rem;
    background-color: var(--accent-warm);
}

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

.explore-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.explore-link {
    padding: 0.9rem 2rem;
    background-color: var(--primary-color);
    color: var(--bg-white);
    border-radius: 6px;
    transition: all 0.3s ease;
}

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

.legal-page {
    padding: 8rem 2rem 4rem;
    max-width: 900px;
    margin: 0 auto;
}

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

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

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

.legal-content ul,
.legal-content ol {
    margin: 1rem 0 1.5rem 2rem;
}

.legal-content li {
    margin-bottom: 0.6rem;
}

.legal-content strong {
    color: var(--text-dark);
}

@media (max-width: 1024px) {
    .hero-offset-content,
    .intro-asymmetric,
    .about-story-asymmetric,
    .service-detail-block {
        flex-direction: column;
    }

    .service-card.offset-1,
    .service-card.offset-2,
    .service-card.offset-3,
    .service-card.offset-4,
    .service-card.offset-5,
    .service-card.offset-6 {
        margin-left: 0;
        margin-right: 0;
    }

    .form-wrapper-offset,
    .team-intro-offset,
    .approach-content,
    .additional-content-offset {
        margin-left: 0;
        margin-right: 0;
    }

    .value-card:nth-child(odd),
    .value-card:nth-child(even) {
        margin-left: 0;
        margin-right: 0;
    }
}

@media (max-width: 768px) {
    .nav-floating {
        top: 1rem;
        padding: 1rem;
    }

    .nav-links {
        display: none;
        width: 100%;
        flex-direction: column;
        gap: 0.8rem;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-toggle {
        display: flex;
        margin-left: auto;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.6rem;
    }

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

    .hero-asymmetric {
        padding: 6rem 1rem 3rem;
    }

    .services-grid-asymmetric {
        flex-direction: column;
    }

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

    .contact-form {
        padding: 2rem 1.5rem;
    }

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