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

:root {
    --primary-color: #2c3e50;
    --secondary-color: #c9a961;
    --accent-color: #8b6f47;
    --text-dark: #1a1a1a;
    --text-light: #666666;
    --bg-light: #f8f6f3;
    --bg-white: #ffffff;
    --border-color: #e0ddd8;
}

body {
    font-family: 'Georgia', serif;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--bg-white);
}

.ad-disclosure {
    background-color: var(--bg-light);
    color: var(--text-light);
    text-align: center;
    padding: 8px 20px;
    font-size: 13px;
    border-bottom: 1px solid var(--border-color);
}

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

.nav-logo {
    font-size: 28px;
    font-weight: bold;
    color: var(--primary-color);
    letter-spacing: 1px;
}

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

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

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

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

.hero-content-left {
    flex: 1;
    max-width: 520px;
    padding-right: 40px;
}

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

.hero-content-left p {
    font-size: 19px;
    margin-bottom: 35px;
    color: var(--text-light);
}

.hero-image-right {
    flex: 1;
    position: relative;
    margin-top: -60px;
}

.hero-image-right img {
    width: 100%;
    height: auto;
    display: block;
    box-shadow: -15px 15px 40px rgba(0,0,0,0.15);
}

.cta-primary {
    display: inline-block;
    padding: 16px 38px;
    background-color: var(--secondary-color);
    color: var(--bg-white);
    text-decoration: none;
    font-size: 17px;
    transition: background-color 0.3s;
}

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

.intro-asymmetric {
    display: flex;
    align-items: flex-start;
    padding: 120px 60px 120px 100px;
    gap: 80px;
}

.intro-text-block {
    flex: 1.2;
    max-width: 600px;
}

.intro-text-block h2 {
    font-size: 38px;
    margin-bottom: 30px;
    color: var(--primary-color);
    font-weight: normal;
}

.intro-text-block p {
    font-size: 18px;
    margin-bottom: 25px;
    color: var(--text-light);
}

.intro-image-offset {
    flex: 1;
    margin-top: 80px;
    background-color: var(--bg-light);
}

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

.services-preview {
    padding: 100px 40px;
    background-color: var(--bg-white);
}

.services-preview h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 70px;
    color: var(--primary-color);
    font-weight: normal;
}

.services-grid-offset {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.service-card {
    flex: 1 1 calc(50% - 20px);
    background-color: var(--bg-light);
    overflow: hidden;
    position: relative;
}

.service-card.card-1 {
    margin-top: 0;
}

.service-card.card-2 {
    margin-top: 60px;
}

.service-card.card-3 {
    margin-top: -40px;
}

.service-card.card-4 {
    margin-top: 20px;
}

.service-card img {
    width: 100%;
    height: 280px;
    display: block;
}

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

.service-card p {
    padding: 0 30px 20px;
    color: var(--text-light);
    font-size: 16px;
}

.service-card .price {
    padding: 0 30px 30px;
    font-size: 22px;
    font-weight: bold;
    color: var(--secondary-color);
}

.cta-inline {
    text-align: center;
    margin-top: 60px;
}

.cta-inline a {
    color: var(--secondary-color);
    text-decoration: none;
    font-size: 19px;
    border-bottom: 2px solid var(--secondary-color);
    padding-bottom: 5px;
    transition: color 0.3s, border-color 0.3s;
}

.cta-inline a:hover {
    color: var(--accent-color);
    border-color: var(--accent-color);
}

.philosophy-split {
    display: flex;
    align-items: center;
    padding: 0;
    gap: 0;
    background-color: var(--bg-white);
}

.philosophy-image {
    flex: 1;
    background-color: var(--bg-light);
}

.philosophy-image img {
    width: 100%;
    height: 100%;
    min-height: 550px;
    display: block;
}

.philosophy-text {
    flex: 1;
    padding: 80px 100px 80px 70px;
}

.philosophy-text h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: var(--primary-color);
    font-weight: normal;
}

.philosophy-text p {
    font-size: 17px;
    margin-bottom: 25px;
    color: var(--text-light);
}

.form-section-offset {
    padding: 120px 80px;
    background-color: var(--bg-light);
    display: flex;
    gap: 100px;
    align-items: flex-start;
}

.form-intro {
    flex: 1;
    padding-top: 40px;
}

.form-intro h2 {
    font-size: 40px;
    margin-bottom: 25px;
    color: var(--primary-color);
    font-weight: normal;
}

.form-intro p {
    font-size: 18px;
    color: var(--text-light);
}

.contact-form {
    flex: 1.2;
    background-color: var(--bg-white);
    padding: 50px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

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

.form-group label {
    display: block;
    margin-bottom: 10px;
    color: var(--text-dark);
    font-size: 16px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid var(--border-color);
    background-color: var(--bg-light);
    font-size: 16px;
    font-family: 'Georgia', serif;
    color: var(--text-dark);
}

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

.btn-submit {
    width: 100%;
    padding: 16px;
    background-color: var(--secondary-color);
    color: var(--bg-white);
    border: none;
    font-size: 18px;
    cursor: pointer;
    font-family: 'Georgia', serif;
    transition: background-color 0.3s;
}

.btn-submit:hover {
    background-color: var(--accent-color);
}

.footer-offset {
    background-color: var(--primary-color);
    color: var(--bg-light);
    padding: 70px 60px 40px;
}

.footer-grid {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto 40px;
    flex-wrap: wrap;
}

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

.footer-col h3 {
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: normal;
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 15px;
    font-weight: normal;
    color: var(--secondary-color);
}

.footer-col p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--bg-light);
}

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

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

.footer-col ul li a {
    color: var(--bg-light);
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s;
}

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

.footer-disclaimer {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 30px;
    margin-top: 20px;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.footer-disclaimer p {
    font-size: 13px;
    line-height: 1.6;
    color: rgba(255,255,255,0.7);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.2);
    z-index: 1000;
}

.cookie-banner.hidden {
    display: none;
}

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

.cookie-content p {
    flex: 1;
    font-size: 15px;
    line-height: 1.5;
}

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

.btn-accept,
.btn-reject {
    padding: 12px 30px;
    border: none;
    cursor: pointer;
    font-size: 15px;
    font-family: 'Georgia', serif;
    transition: background-color 0.3s;
}

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

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

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

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

.about-hero-offset {
    padding: 100px 80px 80px;
    background-color: var(--bg-light);
}

.about-hero-offset h1 {
    font-size: 48px;
    margin-bottom: 60px;
    color: var(--primary-color);
    font-weight: normal;
}

.about-intro-split {
    display: flex;
    gap: 70px;
    align-items: center;
}

.about-text {
    flex: 1;
}

.about-text p {
    font-size: 18px;
    margin-bottom: 25px;
    color: var(--text-light);
}

.about-image {
    flex: 1;
    background-color: var(--bg-white);
}

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

.values-offset {
    padding: 100px 80px;
    background-color: var(--bg-white);
}

.values-offset h2 {
    font-size: 40px;
    margin-bottom: 60px;
    text-align: center;
    color: var(--primary-color);
    font-weight: normal;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    max-width: 1300px;
    margin: 0 auto;
}

.value-block {
    flex: 1 1 calc(50% - 25px);
    min-width: 300px;
}

.value-block h3 {
    font-size: 26px;
    margin-bottom: 15px;
    color: var(--primary-color);
    font-weight: normal;
}

.value-block p {
    font-size: 17px;
    color: var(--text-light);
    line-height: 1.7;
}

.team-asymmetric {
    display: flex;
    align-items: center;
    gap: 0;
    background-color: var(--bg-light);
}

.team-image-left {
    flex: 1;
    background-color: var(--bg-white);
}

.team-image-left img {
    width: 100%;
    height: 100%;
    min-height: 500px;
    display: block;
}

.team-text-right {
    flex: 1;
    padding: 80px 100px;
}

.team-text-right h2 {
    font-size: 38px;
    margin-bottom: 30px;
    color: var(--primary-color);
    font-weight: normal;
}

.team-text-right p {
    font-size: 17px;
    margin-bottom: 25px;
    color: var(--text-light);
}

.cta-about {
    padding: 100px 80px;
    text-align: center;
    background-color: var(--bg-white);
}

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

.cta-about p {
    font-size: 18px;
    margin-bottom: 35px;
    color: var(--text-light);
}

.cta-button {
    display: inline-block;
    padding: 16px 38px;
    background-color: var(--secondary-color);
    color: var(--bg-white);
    text-decoration: none;
    font-size: 17px;
    transition: background-color 0.3s;
}

.cta-button:hover {
    background-color: var(--accent-color);
}

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

.services-header h1 {
    font-size: 48px;
    margin-bottom: 25px;
    color: var(--primary-color);
    font-weight: normal;
}

.services-header p {
    font-size: 17px;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto;
}

.service-detail-offset {
    display: flex;
    align-items: center;
    gap: 80px;
    padding: 80px;
    background-color: var(--bg-white);
}

.service-detail-offset.service-2,
.service-detail-offset.service-4 {
    background-color: var(--bg-light);
}

.service-visual {
    flex: 1;
}

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

.service-info {
    flex: 1;
}

.service-info h2 {
    font-size: 34px;
    margin-bottom: 25px;
    color: var(--primary-color);
    font-weight: normal;
}

.service-info p {
    font-size: 17px;
    margin-bottom: 20px;
    color: var(--text-light);
}

.service-info ul {
    margin: 20px 0 30px 25px;
}

.service-info ul li {
    font-size: 16px;
    margin-bottom: 12px;
    color: var(--text-light);
}

.service-price {
    display: flex;
    align-items: baseline;
    gap: 15px;
    margin-top: 35px;
}

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

.price-amount {
    font-size: 32px;
    font-weight: bold;
    color: var(--secondary-color);
}

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

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

.cta-services p {
    font-size: 18px;
    margin-bottom: 35px;
    color: var(--text-light);
}

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

.contact-header h1 {
    font-size: 48px;
    margin-bottom: 25px;
    color: var(--primary-color);
    font-weight: normal;
}

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

.contact-split {
    display: flex;
    gap: 80px;
    padding: 80px;
    background-color: var(--bg-white);
    align-items: flex-start;
}

.contact-info-left {
    flex: 1;
}

.contact-info-left h2 {
    font-size: 38px;
    margin-bottom: 50px;
    color: var(--primary-color);
    font-weight: normal;
}

.contact-detail {
    margin-bottom: 40px;
}

.contact-detail h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--primary-color);
    font-weight: normal;
}

.contact-detail p {
    font-size: 17px;
    color: var(--text-light);
    line-height: 1.7;
}

.contact-detail .note {
    font-size: 15px;
    font-style: italic;
    margin-top: 10px;
    color: var(--accent-color);
}

.contact-image-right {
    flex: 1;
    background-color: var(--bg-light);
}

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

.thanks-section {
    display: flex;
    align-items: center;
    gap: 80px;
    padding: 100px 80px;
    min-height: 70vh;
    background-color: var(--bg-light);
}

.thanks-content {
    flex: 1;
}

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

.thanks-content p {
    font-size: 18px;
    margin-bottom: 25px;
    color: var(--text-light);
}

.thanks-actions {
    display: flex;
    gap: 20px;
    margin-top: 45px;
}

.btn-primary {
    padding: 16px 38px;
    background-color: var(--secondary-color);
    color: var(--bg-white);
    text-decoration: none;
    font-size: 17px;
    transition: background-color 0.3s;
}

.btn-primary:hover {
    background-color: var(--accent-color);
}

.btn-secondary {
    padding: 16px 38px;
    background-color: transparent;
    color: var(--secondary-color);
    text-decoration: none;
    font-size: 17px;
    border: 1px solid var(--secondary-color);
    transition: background-color 0.3s, color 0.3s;
}

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

.thanks-image {
    flex: 1;
    background-color: var(--bg-white);
}

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

.legal-content {
    padding: 100px 80px;
    max-width: 1000px;
    margin: 0 auto;
    background-color: var(--bg-white);
}

.legal-content h1 {
    font-size: 44px;
    margin-bottom: 40px;
    color: var(--primary-color);
    font-weight: normal;
}

.legal-content h2 {
    font-size: 28px;
    margin-top: 45px;
    margin-bottom: 20px;
    color: var(--primary-color);
    font-weight: normal;
}

.legal-content h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--primary-color);
    font-weight: normal;
}

.legal-content p {
    font-size: 16px;
    margin-bottom: 20px;
    color: var(--text-light);
    line-height: 1.7;
}

.legal-content ul {
    margin: 20px 0 20px 30px;
}

.legal-content ul li {
    font-size: 16px;
    margin-bottom: 12px;
    color: var(--text-light);
}

.legal-content a {
    color: var(--secondary-color);
    text-decoration: none;
}

.legal-content a:hover {
    text-decoration: underline;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
}

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

.cookie-table th {
    background-color: var(--bg-light);
    color: var(--primary-color);
    font-weight: normal;
    font-size: 17px;
}

.cookie-table td {
    color: var(--text-light);
    font-size: 16px;
}

@media (max-width: 968px) {
    .hero-offset,
    .intro-asymmetric,
    .philosophy-split,
    .form-section-offset,
    .about-intro-split,
    .team-asymmetric,
    .service-detail-offset,
    .contact-split,
    .thanks-section {
        flex-direction: column;
    }

    .hero-offset {
        padding: 60px 30px;
    }

    .hero-content-left h1 {
        font-size: 38px;
    }

    .hero-image-right {
        margin-top: 40px;
    }

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

    .service-card {
        flex: 1 1 100%;
        margin-top: 0 !important;
    }

    .nav-asymmetric {
        padding: 20px 30px;
    }

    .nav-links {
        gap: 20px;
        font-size: 14px;
    }

    .cookie-content {
        flex-direction: column;
        gap: 20px;
    }

    .cookie-buttons {
        width: 100%;
        flex-direction: column;
    }

    .btn-accept,
    .btn-reject {
        width: 100%;
    }
}