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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #f8f9fa;
}

.ad-disclosure {
    background-color: #fffbea;
    border-bottom: 1px solid #f0e5c8;
    padding: 8px 20px;
    text-align: center;
    font-size: 13px;
    color: #7c6a4f;
}

.nav-asymmetric {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 40px;
    background-color: #ffffff;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.nav-brand {
    font-size: 26px;
    font-weight: 700;
    color: #2c3e50;
    letter-spacing: -0.5px;
}

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

.nav-links a {
    text-decoration: none;
    color: #555;
    font-size: 15px;
    transition: color 0.3s;
    position: relative;
}

.nav-links a:hover {
    color: #8b7355;
}

.hero-offset {
    display: flex;
    min-height: 85vh;
    position: relative;
    background-color: #ffffff;
}

.hero-content-left {
    width: 45%;
    padding: 80px 60px 80px 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #f4f1ed;
}

.hero-content-left h1 {
    font-size: 52px;
    line-height: 1.15;
    margin-bottom: 28px;
    color: #2c3e50;
    font-weight: 700;
}

.hero-content-left p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 35px;
    color: #5a6570;
}

.cta-primary {
    display: inline-block;
    padding: 16px 32px;
    background-color: #8b7355;
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    border-radius: 4px;
    transition: background-color 0.3s;
    align-self: flex-start;
}

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

.hero-image-right {
    width: 55%;
    overflow: hidden;
    background-color: #e8e4df;
}

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

.intro-diagonal {
    display: flex;
    padding: 100px 80px;
    background-color: #ffffff;
    gap: 70px;
    align-items: center;
}

.diagonal-text {
    width: 58%;
}

.diagonal-text h2 {
    font-size: 38px;
    margin-bottom: 24px;
    color: #2c3e50;
    line-height: 1.3;
}

.diagonal-text p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #5a6570;
    line-height: 1.8;
}

.diagonal-image {
    width: 42%;
    transform: translateY(-40px);
    background-color: #e8e4df;
    overflow: hidden;
}

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

.services-staggered {
    padding: 90px 80px;
    background-color: #f8f9fa;
}

.section-title-offset {
    font-size: 42px;
    margin-bottom: 60px;
    color: #2c3e50;
    padding-left: 120px;
}

.service-card {
    display: flex;
    margin-bottom: 50px;
    background-color: #ffffff;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    overflow: hidden;
}

.card-left {
    margin-left: 0;
    margin-right: 150px;
}

.card-right {
    margin-left: 150px;
    margin-right: 0;
}

.card-center {
    margin-left: 100px;
    margin-right: 100px;
}

.service-visual {
    width: 45%;
    overflow: hidden;
    background-color: #e8e4df;
}

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

.service-info {
    width: 55%;
    padding: 45px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-info-full {
    width: 100%;
    padding: 45px 50px;
    text-align: center;
}

.service-info h3,
.service-info-full h3 {
    font-size: 26px;
    margin-bottom: 18px;
    color: #2c3e50;
}

.service-info p,
.service-info-full p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 22px;
    color: #5a6570;
}

.service-price {
    font-size: 32px;
    font-weight: 700;
    color: #8b7355;
    margin-bottom: 20px;
}

.btn-select-service {
    padding: 14px 28px;
    background-color: #2c3e50;
    color: #ffffff;
    border: none;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    border-radius: 4px;
    transition: background-color 0.3s;
    align-self: flex-start;
}

.service-info-full .btn-select-service {
    margin-top: 10px;
}

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

.form-section-offset {
    display: flex;
    background-color: #ffffff;
    min-height: 700px;
}

.form-container {
    width: 52%;
    padding: 80px 70px;
}

.form-container h2 {
    font-size: 38px;
    margin-bottom: 18px;
    color: #2c3e50;
}

.form-container > p {
    font-size: 16px;
    margin-bottom: 40px;
    color: #5a6570;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 15px;
    color: #2c3e50;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #d1d5db;
    border-radius: 4px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #8b7355;
}

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

.btn-submit {
    padding: 16px 40px;
    background-color: #8b7355;
    color: #ffffff;
    border: none;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    border-radius: 4px;
    transition: background-color 0.3s;
    margin-top: 10px;
}

.btn-submit:hover {
    background-color: #6f5a43;
}

.btn-submit:disabled {
    background-color: #d1d5db;
    cursor: not-allowed;
}

.form-image {
    width: 48%;
    overflow: hidden;
    background-color: #e8e4df;
}

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

.trust-block {
    padding: 90px 200px;
    background-color: #2c3e50;
}

.trust-content {
    color: #ffffff;
}

.trust-content h2 {
    font-size: 36px;
    margin-bottom: 28px;
    line-height: 1.3;
}

.trust-content p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    opacity: 0.92;
}

.footer-asymmetric {
    background-color: #1a252f;
    color: #ffffff;
    padding: 70px 80px 40px;
}

.footer-main {
    display: flex;
    justify-content: space-between;
    margin-bottom: 50px;
    gap: 60px;
}

.footer-col {
    flex: 1;
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: #ffffff;
}

.footer-col p {
    font-size: 14px;
    line-height: 1.7;
    color: #b8c1cc;
}

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

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: #b8c1cc;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

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

.footer-disclaimer {
    border-top: 1px solid #2c3e50;
    padding-top: 30px;
    margin-top: 20px;
}

.footer-disclaimer p {
    font-size: 13px;
    line-height: 1.7;
    color: #8a96a3;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #ffffff;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
    padding: 25px 40px;
    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: 30px;
}

.cookie-content p {
    flex: 1;
    font-size: 14px;
    color: #2c3e50;
    line-height: 1.6;
}

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

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

.btn-accept {
    background-color: #8b7355;
    color: #ffffff;
}

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

.btn-reject {
    background-color: #e5e7eb;
    color: #2c3e50;
}

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

.thanks-container {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 40px;
    background-color: #f8f9fa;
}

.thanks-content {
    max-width: 700px;
    text-align: center;
    background-color: #ffffff;
    padding: 60px 50px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.thanks-content h1 {
    font-size: 42px;
    margin-bottom: 22px;
    color: #2c3e50;
}

.thanks-content p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 35px;
    color: #5a6570;
}

.thanks-content a {
    display: inline-block;
    padding: 14px 32px;
    background-color: #8b7355;
    color: #ffffff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.thanks-content a:hover {
    background-color: #6f5a43;
}

.page-content {
    max-width: 900px;
    margin: 60px auto;
    padding: 60px 80px;
    background-color: #ffffff;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
}

.page-content h1 {
    font-size: 40px;
    margin-bottom: 30px;
    color: #2c3e50;
}

.page-content h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.page-content h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.page-content p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 18px;
    color: #5a6570;
}

.page-content ul,
.page-content ol {
    margin-bottom: 20px;
    padding-left: 30px;
}

.page-content li {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 10px;
    color: #5a6570;
}

.contact-layout {
    display: flex;
    gap: 80px;
    padding: 80px;
    background-color: #ffffff;
}

.contact-info {
    width: 55%;
}

.contact-info h1 {
    font-size: 42px;
    margin-bottom: 30px;
    color: #2c3e50;
}

.contact-info p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 40px;
    color: #5a6570;
}

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

.contact-details h3 {
    font-size: 18px;
    margin-bottom: 12px;
    color: #2c3e50;
    font-weight: 600;
}

.contact-details p {
    font-size: 16px;
    margin-bottom: 8px;
    color: #5a6570;
}

.contact-visual {
    width: 45%;
    background-color: #e8e4df;
    overflow: hidden;
}

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

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

    .hero-content-left,
    .hero-image-right {
        width: 100%;
    }

    .intro-diagonal {
        flex-direction: column;
        gap: 40px;
    }

    .diagonal-text,
    .diagonal-image {
        width: 100%;
    }

    .diagonal-image {
        transform: none;
    }

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

    .card-left,
    .card-right,
    .card-center {
        margin-left: 0;
        margin-right: 0;
    }

    .service-visual,
    .service-info {
        width: 100%;
    }

    .form-section-offset {
        flex-direction: column;
    }

    .form-container,
    .form-image {
        width: 100%;
    }

    .contact-layout {
        flex-direction: column;
        gap: 50px;
    }

    .contact-info,
    .contact-visual {
        width: 100%;
    }
}