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

:root {
    --primary-color: #2d5f4f;
    --secondary-color: #7a9d8e;
    --accent-color: #b8a584;
    --dark-bg: #1a1a1a;
    --light-bg: #f8f6f3;
    --text-dark: #2c2c2c;
    --text-light: #ffffff;
    --border-color: #e0ddd8;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--light-bg);
}

.ad-notice {
    background-color: var(--dark-bg);
    color: var(--text-light);
    text-align: center;
    padding: 8px;
    font-size: 12px;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-asymmetric {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background-color: var(--light-bg);
    position: relative;
    margin-left: 60px;
}

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

.nav-links {
    display: flex;
    gap: 35px;
}

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

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

.hero-offset {
    display: flex;
    align-items: center;
    min-height: 85vh;
    padding: 80px 60px;
    position: relative;
    background-color: var(--light-bg);
}

.hero-content-left {
    width: 45%;
    padding-right: 60px;
    position: relative;
    z-index: 2;
    margin-left: 80px;
}

.hero-content-left h1 {
    font-size: 68px;
    line-height: 1.1;
    color: var(--primary-color);
    margin-bottom: 30px;
    font-weight: 700;
}

.hero-content-left p {
    font-size: 20px;
    margin-bottom: 40px;
    color: var(--text-dark);
    line-height: 1.6;
}

.hero-image-overlap {
    position: absolute;
    right: -40px;
    top: 50%;
    transform: translateY(-50%);
    width: 55%;
    height: 70%;
    overflow: hidden;
    border-radius: 8px;
    background-color: var(--secondary-color);
}

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

.cta-primary {
    display: inline-block;
    padding: 16px 42px;
    background-color: var(--primary-color);
    color: var(--text-light);
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s;
}

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

.intro-asymmetric {
    display: flex;
    align-items: center;
    padding: 120px 60px;
    gap: 80px;
    background-color: #ffffff;
}

.intro-block-right {
    width: 50%;
    margin-left: 120px;
}

.intro-block-right h2 {
    font-size: 42px;
    color: var(--primary-color);
    margin-bottom: 25px;
}

.intro-block-right p {
    font-size: 18px;
    line-height: 1.8;
}

.intro-visual-left {
    width: 45%;
    position: relative;
    margin-top: -60px;
    background-color: var(--accent-color);
    border-radius: 8px;
    overflow: hidden;
}

.intro-visual-left img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.services-cards-offset {
    padding: 100px 60px 120px;
    background-color: var(--light-bg);
}

.section-title-left {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 60px;
    margin-left: 140px;
}

.services-grid-irregular {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    padding: 0 40px;
}

.service-card {
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s;
    display: flex;
    flex-direction: column;
}

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

.card-offset-1 {
    width: calc(45% - 20px);
    margin-left: 80px;
}

.card-offset-2 {
    width: calc(50% - 20px);
    margin-top: 60px;
}

.card-offset-3 {
    width: calc(48% - 20px);
    margin-left: 40px;
    margin-top: -40px;
}

.card-offset-4 {
    width: calc(47% - 20px);
    margin-top: 30px;
}

.card-offset-5 {
    width: calc(52% - 20px);
    margin-left: 120px;
    margin-top: -50px;
}

.card-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
    background-color: var(--secondary-color);
}

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

.service-card h3 {
    font-size: 24px;
    color: var(--primary-color);
    margin: 25px 25px 15px;
}

.service-card p {
    font-size: 16px;
    line-height: 1.6;
    margin: 0 25px 20px;
    flex-grow: 1;
}

.price-tag {
    font-size: 28px;
    font-weight: 700;
    color: var(--accent-color);
    margin: 0 25px 20px;
}

.select-service {
    margin: 0 25px 25px;
    padding: 14px 28px;
    background-color: var(--primary-color);
    color: var(--text-light);
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.select-service:hover {
    background-color: #234539;
}

.form-section-overlap {
    padding: 100px 60px;
    background-color: #ffffff;
    position: relative;
}

.form-container-asymmetric {
    max-width: 680px;
    margin-left: 180px;
    padding: 60px;
    background-color: var(--light-bg);
    border-radius: 8px;
}

.form-container-asymmetric h2 {
    font-size: 38px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.form-intro {
    font-size: 16px;
    margin-bottom: 40px;
    color: var(--text-dark);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

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

.form-group label {
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group textarea {
    padding: 14px;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
}

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

.form-group input[readonly] {
    background-color: #f0ede8;
}

.cta-submit {
    padding: 16px 42px;
    background-color: var(--primary-color);
    color: var(--text-light);
    border: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.cta-submit:hover {
    background-color: #234539;
}

.trust-block-asymmetric {
    padding: 100px 60px;
    background-color: var(--primary-color);
}

.trust-content-right {
    max-width: 600px;
    margin-left: auto;
    margin-right: 140px;
    color: var(--text-light);
}

.trust-content-right h2 {
    font-size: 42px;
    margin-bottom: 25px;
}

.trust-content-right p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.footer-asymmetric {
    background-color: var(--dark-bg);
    color: var(--text-light);
    padding: 60px 60px 30px;
}

.footer-columns {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 40px;
    margin-left: 80px;
}

.footer-col h4 {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--accent-color);
}

.footer-col p {
    font-size: 14px;
    line-height: 1.6;
}

.footer-col a {
    display: block;
    color: var(--text-light);
    text-decoration: none;
    margin-bottom: 12px;
    font-size: 14px;
    transition: color 0.3s;
}

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

.footer-disclaimer {
    padding: 30px 80px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    margin-bottom: 30px;
}

.footer-disclaimer p {
    font-size: 13px;
    line-height: 1.6;
    color: #d0d0d0;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 13px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--dark-bg);
    color: var(--text-light);
    padding: 25px 40px;
    display: none;
    z-index: 10000;
}

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

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

.cookie-content p {
    font-size: 14px;
    line-height: 1.6;
}

.cookie-content a {
    color: var(--accent-color);
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
}

.cookie-btn-accept,
.cookie-btn-reject {
    padding: 12px 28px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

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

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

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

.about-hero-offset {
    display: flex;
    align-items: center;
    padding: 100px 60px;
    gap: 80px;
    background-color: var(--light-bg);
}

.about-content-block {
    width: 50%;
    margin-left: 100px;
}

.about-content-block h1 {
    font-size: 56px;
    color: var(--primary-color);
    margin-bottom: 30px;
}

.about-content-block p {
    font-size: 20px;
    line-height: 1.7;
}

.about-image-right {
    width: 45%;
    margin-top: -80px;
    background-color: var(--secondary-color);
    border-radius: 8px;
    overflow: hidden;
}

.about-image-right img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.philosophy-asymmetric {
    padding: 100px 60px;
    background-color: #ffffff;
}

.section-title-offset {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 60px;
    margin-left: 160px;
}

.philosophy-grid {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.philosophy-item {
    padding: 40px;
    background-color: var(--light-bg);
    border-radius: 8px;
}

.item-left {
    width: 60%;
    margin-left: 80px;
}

.item-right {
    width: 65%;
    margin-left: auto;
    margin-right: 80px;
}

.item-center {
    width: 70%;
    margin: 0 auto;
}

.philosophy-item h3 {
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.philosophy-item p {
    font-size: 17px;
    line-height: 1.7;
}

.values-overlap {
    display: flex;
    align-items: center;
    padding: 100px 60px;
    gap: 80px;
    background-color: var(--light-bg);
}

.values-content-left {
    width: 50%;
    margin-left: 100px;
}

.values-content-left h2 {
    font-size: 42px;
    color: var(--primary-color);
    margin-bottom: 30px;
}

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

.values-list li {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 16px;
    padding-left: 30px;
    position: relative;
}

.values-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 20px;
}

.values-image-right {
    width: 40%;
    background-color: var(--accent-color);
    border-radius: 8px;
    overflow: hidden;
}

.values-image-right img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.team-section-asymmetric {
    padding: 80px 60px;
    background-color: #ffffff;
    max-width: 800px;
    margin: 0 auto;
}

.team-section-asymmetric h2 {
    font-size: 42px;
    color: var(--primary-color);
    margin-bottom: 25px;
}

.team-intro {
    font-size: 18px;
    line-height: 1.8;
}

.services-hero {
    padding: 100px 60px 60px;
    background-color: var(--light-bg);
    text-align: center;
}

.services-hero h1 {
    font-size: 56px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.services-subtitle {
    font-size: 18px;
    color: var(--text-dark);
    max-width: 700px;
    margin: 0 auto;
}

.services-detail-asymmetric {
    padding: 60px 40px 100px;
    background-color: #ffffff;
}

.service-detail-block {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 80px;
    padding: 40px;
}

.block-left {
    margin-left: 80px;
}

.block-right {
    flex-direction: row-reverse;
    margin-right: 80px;
}

.block-center {
    margin: 0 auto;
    max-width: 900px;
    justify-content: center;
}

.service-detail-image {
    width: 45%;
    background-color: var(--secondary-color);
    border-radius: 8px;
    overflow: hidden;
}

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

.service-detail-content {
    width: 50%;
}

.service-detail-content h2 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.price-large {
    font-size: 42px;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 25px;
}

.price-suffix {
    font-size: 20px;
    font-weight: 400;
    color: var(--text-dark);
}

.service-detail-content p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 25px;
}

.service-features {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.service-features li {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
}

.service-features li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-size: 24px;
}

.services-note {
    padding: 40px 60px;
    background-color: var(--light-bg);
    text-align: center;
}

.services-note p {
    font-size: 15px;
    color: var(--text-dark);
}

.contact-hero {
    padding: 100px 60px 60px;
    background-color: var(--light-bg);
    text-align: center;
}

.contact-hero h1 {
    font-size: 56px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.contact-hero p {
    font-size: 18px;
    color: var(--text-dark);
}

.contact-layout-asymmetric {
    display: flex;
    align-items: flex-start;
    padding: 80px 60px;
    gap: 100px;
    background-color: #ffffff;
}

.contact-info-left {
    width: 50%;
    margin-left: 100px;
}

.contact-info-left h2 {
    font-size: 42px;
    color: var(--primary-color);
    margin-bottom: 40px;
}

.contact-item {
    margin-bottom: 35px;
}

.contact-item h3 {
    font-size: 22px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.contact-item p {
    font-size: 17px;
    line-height: 1.7;
}

.contact-visual-right {
    width: 40%;
    margin-top: 60px;
    background-color: var(--accent-color);
    border-radius: 8px;
    overflow: hidden;
}

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

.contact-cta-section {
    padding: 80px 60px;
    background-color: var(--light-bg);
    text-align: center;
}

.contact-cta-section h2 {
    font-size: 38px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.contact-cta-section p {
    font-size: 17px;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.legal-content {
    padding: 80px 60px;
    max-width: 900px;
    margin: 0 auto;
    background-color: #ffffff;
}

.legal-content h1 {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 30px;
}

.legal-content h2 {
    font-size: 28px;
    color: var(--primary-color);
    margin-top: 40px;
    margin-bottom: 15px;
}

.legal-content h3 {
    font-size: 22px;
    color: var(--text-dark);
    margin-top: 25px;
    margin-bottom: 12px;
}

.legal-content p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 15px;
}

.legal-content ul {
    margin-left: 25px;
    margin-bottom: 20px;
}

.legal-content li {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 10px;
}

.thanks-section {
    padding: 120px 60px;
    background-color: var(--light-bg);
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.thanks-content h1 {
    font-size: 52px;
    color: var(--primary-color);
    margin-bottom: 30px;
}

.thanks-message {
    font-size: 20px;
    line-height: 1.7;
    margin-bottom: 30px;
}

.thanks-service-info {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.thanks-content p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 40px;
}

@media (max-width: 1024px) {
    .hero-offset,
    .intro-asymmetric,
    .about-hero-offset,
    .values-overlap,
    .contact-layout-asymmetric {
        flex-direction: column;
    }

    .hero-content-left,
    .intro-block-right,
    .about-content-block,
    .values-content-left,
    .contact-info-left {
        width: 100%;
        margin-left: 0;
    }

    .hero-image-overlap,
    .intro-visual-left,
    .about-image-right,
    .values-image-right,
    .contact-visual-right {
        position: static;
        width: 100%;
        margin: 0;
        transform: none;
    }

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

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

    .service-detail-block {
        flex-direction: column;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    .service-detail-image,
    .service-detail-content {
        width: 100%;
    }

    .form-container-asymmetric {
        margin-left: 0;
    }

    .nav-asymmetric {
        margin-left: 0;
    }

    .footer-columns {
        flex-direction: column;
        margin-left: 0;
    }
}