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

body {
    font-family: 'Georgia', 'Garamond', serif;
    line-height: 1.8;
    color: #2c3e50;
    background: #fdfaf6;
}

.nav-container {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.97);
    border-bottom: 1px solid #e8dfd0;
    z-index: 1000;
    padding: 1.2rem 0;
}

.nav-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo {
    font-size: 1.5rem;
    font-weight: 600;
    color: #8b6f47;
    text-decoration: none;
}

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

.nav-links a {
    text-decoration: none;
    color: #5a4a3a;
    font-size: 0.95rem;
    transition: color 0.3s;
}

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

.ad-notice {
    font-size: 0.75rem;
    color: #999;
    font-style: italic;
    padding: 0.3rem 0.8rem;
    border-left: 2px solid #ddd;
}

.hero-section {
    margin-top: 80px;
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
}

.hero-image-container {
    position: absolute;
    top: 0;
    right: 0;
    width: 58%;
    height: 100%;
    background-color: #d4c4b0;
    overflow: hidden;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.9;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 580px;
    padding: 4rem 2rem 4rem 4rem;
    background: linear-gradient(to right, #fdfaf6 70%, transparent);
}

.hero-content h1 {
    font-size: 3.2rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #3a3a3a;
    font-weight: 400;
}

.hero-content p {
    font-size: 1.15rem;
    margin-bottom: 2rem;
    color: #5a5a5a;
}

.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #8b6f47;
    color: white;
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.cta-primary:hover {
    background: #725a38;
    transform: translateY(-2px);
}

.story-section {
    max-width: 720px;
    margin: 6rem auto;
    padding: 0 2rem;
}

.story-section h2 {
    font-size: 2.4rem;
    margin-bottom: 2rem;
    font-weight: 400;
    color: #3a3a3a;
}

.story-section p {
    margin-bottom: 1.8rem;
    font-size: 1.1rem;
    color: #4a4a4a;
}

.inline-image-wrapper {
    margin: 3rem 0;
    position: relative;
    width: calc(100% + 8rem);
    margin-left: -4rem;
    background-color: #e8dfd0;
}

.inline-image {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.offset-section {
    display: flex;
    align-items: center;
    margin: 5rem 0;
    gap: 3rem;
    max-width: 1300px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 2rem;
}

.offset-content {
    flex: 1;
    padding: 2rem;
    transform: translateY(-40px);
}

.offset-image-container {
    flex: 1;
    background-color: #d4c4b0;
    min-height: 480px;
    position: relative;
}

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

.services-grid {
    max-width: 1200px;
    margin: 5rem auto;
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.service-card {
    display: flex;
    gap: 2.5rem;
    align-items: flex-start;
    position: relative;
}

.service-card:nth-child(even) {
    flex-direction: row-reverse;
    text-align: right;
}

.service-card:nth-child(even) .service-image-container {
    transform: translateX(30px);
}

.service-card:nth-child(odd) .service-image-container {
    transform: translateX(-30px);
}

.service-image-container {
    flex: 0 0 380px;
    height: 320px;
    background-color: #e8dfd0;
    overflow: hidden;
}

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

.service-info {
    flex: 1;
    padding: 2rem 0;
}

.service-info h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 400;
    color: #3a3a3a;
}

.service-info p {
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    color: #555;
}

.price-tag {
    font-size: 1.8rem;
    color: #8b6f47;
    font-weight: 600;
    margin-bottom: 1.5rem;
    display: block;
}

.cta-secondary {
    display: inline-block;
    padding: 0.9rem 2rem;
    border: 2px solid #8b6f47;
    color: #8b6f47;
    text-decoration: none;
    transition: all 0.3s;
}

.cta-secondary:hover {
    background: #8b6f47;
    color: white;
}

.form-section {
    max-width: 680px;
    margin: 6rem auto;
    padding: 3rem 2rem;
    background: white;
    border: 1px solid #e8dfd0;
}

.form-section h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    font-weight: 400;
    text-align: center;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.6rem;
    color: #4a4a4a;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 1px solid #ddd;
    font-family: inherit;
    font-size: 1rem;
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.submit-btn {
    width: 100%;
    padding: 1.1rem;
    background: #8b6f47;
    color: white;
    border: none;
    font-size: 1.05rem;
    cursor: pointer;
    transition: background 0.3s;
}

.submit-btn:hover {
    background: #725a38;
}

.footer {
    background: #3a3a3a;
    color: #ccc;
    padding: 3rem 2rem 2rem;
    margin-top: 6rem;
}

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

.footer-section h4 {
    color: #fff;
    margin-bottom: 1rem;
    font-weight: 400;
}

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

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

.footer-section a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: #8b6f47;
}

.footer-bottom {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #555;
    font-size: 0.9rem;
}

.disclaimer-box {
    max-width: 900px;
    margin: 4rem auto;
    padding: 2rem;
    background: #fff9f0;
    border-left: 4px solid #8b6f47;
    font-size: 0.92rem;
    color: #666;
}

.references-section {
    max-width: 900px;
    margin: 4rem auto;
    padding: 2rem;
    background: #f5f5f5;
}

.references-section h3 {
    margin-bottom: 1rem;
    font-weight: 400;
}

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

.references-section li {
    margin-bottom: 0.8rem;
}

.references-section a {
    color: #8b6f47;
    word-break: break-all;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    color: white;
    padding: 1.5rem 2rem;
    z-index: 2000;
    display: none;
}

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

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

.cookie-text {
    flex: 1;
    font-size: 0.95rem;
}

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

.cookie-btn {
    padding: 0.8rem 1.8rem;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    transition: all 0.3s;
}

.cookie-accept {
    background: #8b6f47;
    color: white;
}

.cookie-accept:hover {
    background: #725a38;
}

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

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

.thanks-container {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    text-align: center;
}

.thanks-content {
    max-width: 600px;
}

.thanks-content h1 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: #8b6f47;
    font-weight: 400;
}

.thanks-content p {
    font-size: 1.15rem;
    margin-bottom: 2rem;
    color: #555;
}

.contact-info-section {
    max-width: 800px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.info-block {
    margin-bottom: 2.5rem;
}

.info-block h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: #8b6f47;
    font-weight: 400;
}

.info-block p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.8;
}

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

.legal-page h1 {
    font-size: 2.6rem;
    margin-bottom: 2rem;
    font-weight: 400;
}

.legal-page h2 {
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 400;
}

.legal-page p {
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    line-height: 1.8;
}

.legal-page ul {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.legal-page li {
    margin-bottom: 0.8rem;
}

@media (max-width: 968px) {
    .hero-image-container {
        width: 100%;
        height: 400px;
        position: relative;
    }

    .hero-content {
        background: rgba(253, 250, 246, 0.95);
        max-width: 100%;
    }

    .inline-image-wrapper {
        width: 100%;
        margin-left: 0;
    }

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

    .offset-content {
        transform: none;
    }

    .service-card,
    .service-card:nth-child(even) {
        flex-direction: column;
        text-align: left;
    }

    .service-image-container,
    .service-card:nth-child(even) .service-image-container,
    .service-card:nth-child(odd) .service-image-container {
        transform: none;
        flex: 1;
        width: 100%;
    }

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

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