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

body {
    font-family: 'Georgia', serif;
    line-height: 1.6;
    color: #2c2c2c;
    background: #fafafa;
}

.ad-notice {
    background: #f4f4f4;
    text-align: center;
    padding: 8px;
    font-size: 12px;
    color: #666;
    border-bottom: 1px solid #e0e0e0;
}

.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background: #fff;
    border-bottom: 1px solid #e8e8e8;
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-brand {
    font-size: 24px;
    font-weight: bold;
    color: #5a4a3a;
    letter-spacing: 1px;
}

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

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

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

.hero-full {
    position: relative;
    height: 85vh;
    overflow: hidden;
}

.hero-image-container {
    width: 100%;
    height: 100%;
    background-color: #d4c4b0;
}

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

.hero-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    max-width: 800px;
    padding: 40px;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(5px);
}

.hero-overlay h1 {
    font-size: 48px;
    margin-bottom: 20px;
    line-height: 1.2;
    font-weight: 400;
}

.hero-overlay p {
    font-size: 20px;
    line-height: 1.5;
}

.story-intro {
    padding: 100px 20px;
    background: #fff;
}

.narrow-content {
    max-width: 720px;
    margin: 0 auto;
}

.lead-text {
    font-size: 22px;
    line-height: 1.7;
    color: #444;
    margin-bottom: 30px;
    font-style: italic;
}

.narrow-content p {
    font-size: 18px;
    margin-bottom: 24px;
    line-height: 1.8;
}

.narrow-content h2 {
    font-size: 32px;
    margin: 60px 0 30px;
    color: #3a3a3a;
    font-weight: 400;
}

.inline-image {
    width: 100%;
    height: auto;
    margin: 50px 0;
    border-radius: 4px;
    background-color: #e8ddd0;
    object-fit: cover;
}

.insight-section {
    padding: 100px 20px;
    background: #f5f0eb;
}

.split-layout {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    gap: 60px;
    align-items: center;
}

.split-text {
    flex: 1;
}

.split-text h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #3a3a3a;
    font-weight: 400;
}

.split-text p {
    font-size: 18px;
    margin-bottom: 20px;
    line-height: 1.8;
}

.split-image {
    flex: 1;
    background-color: #d4c4b0;
}

.split-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 4px;
    object-fit: cover;
}

.trust-block {
    padding: 100px 20px;
    background: #fff;
}

.process-flow {
    display: flex;
    flex-direction: column;
    gap: 50px;
    margin: 60px 0;
}

.process-step {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.step-number {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: #8b7355;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: bold;
    border-radius: 50%;
}

.process-step h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: #3a3a3a;
    font-weight: 400;
}

.process-step p {
    font-size: 17px;
    line-height: 1.7;
    color: #555;
}

.testimonials-inline {
    padding: 100px 20px;
    background: #faf7f4;
}

.testimonial {
    border-left: 4px solid #8b7355;
    padding-left: 30px;
    margin: 40px 0;
    font-style: italic;
}

.testimonial p {
    font-size: 19px;
    line-height: 1.7;
    color: #444;
    margin-bottom: 15px;
}

.testimonial cite {
    font-style: normal;
    font-size: 15px;
    color: #777;
}

.benefits-reveal {
    padding: 100px 20px;
    background: #fff;
}

.grid-benefits {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    gap: 40px;
    flex-wrap: wrap;
}

.benefit-card {
    flex: 1;
    min-width: 300px;
    background: #f9f9f9;
    border-radius: 4px;
    overflow: hidden;
    background-color: #e8ddd0;
}

.benefit-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.benefit-card h3 {
    font-size: 22px;
    margin: 25px 25px 15px;
    color: #3a3a3a;
    font-weight: 400;
}

.benefit-card p {
    font-size: 16px;
    line-height: 1.7;
    padding: 0 25px 25px;
    color: #555;
}

.cta-story {
    padding: 80px 20px;
    background: #8b7355;
    color: #fff;
    text-align: center;
}

.cta-story h2 {
    font-size: 36px;
    margin-bottom: 20px;
    font-weight: 400;
}

.cta-story p {
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto;
}

.services-pricing {
    padding: 80px 20px;
    background: #fff;
}

.service-list {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.service-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    padding: 35px;
    background: #fafafa;
    border: 1px solid #e8e8e8;
    border-radius: 4px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.service-item.featured {
    border: 2px solid #8b7355;
    background: #f5f0eb;
}

.service-content {
    flex: 1;
}

.service-content h3 {
    font-size: 26px;
    margin-bottom: 15px;
    color: #3a3a3a;
    font-weight: 400;
}

.service-content p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #555;
}

.service-features {
    list-style: none;
    padding: 0;
}

.service-features li {
    font-size: 15px;
    padding: 6px 0;
    color: #666;
    position: relative;
    padding-left: 20px;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #8b7355;
    font-weight: bold;
}

.service-price {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.price-tag {
    font-size: 32px;
    font-weight: bold;
    color: #8b7355;
}

.btn-select {
    background: #8b7355;
    color: #fff;
    border: none;
    padding: 14px 28px;
    font-size: 16px;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s;
}

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

.order-form-section {
    padding: 80px 20px;
    background: #f5f0eb;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background: #fff;
    padding: 50px;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.form-container h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: #3a3a3a;
    font-weight: 400;
}

.form-intro {
    font-size: 16px;
    margin-bottom: 30px;
    color: #666;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    font-size: 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: inherit;
}

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

.btn-submit {
    background: #8b7355;
    color: #fff;
    border: none;
    padding: 16px 40px;
    font-size: 17px;
    border-radius: 4px;
    cursor: pointer;
    width: 100%;
    transition: background 0.3s;
}

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

.final-reassurance {
    padding: 100px 20px;
    background: #fff;
}

.main-footer {
    background: #3a3a3a;
    color: #ccc;
    padding: 60px 20px 20px;
}

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

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

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

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

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

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

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

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto 30px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    font-size: 13px;
    line-height: 1.6;
    color: #aaa;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #555;
    font-size: 13px;
    max-width: 1200px;
    margin: 0 auto;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c2c2c;
    color: #fff;
    padding: 25px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    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;
    line-height: 1.6;
}

.cookie-content a {
    color: #8b7355;
    text-decoration: underline;
}

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

.btn-accept,
.btn-reject {
    padding: 10px 25px;
    font-size: 14px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: opacity 0.3s;
}

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

.btn-reject {
    background: #555;
    color: #fff;
}

.btn-accept:hover,
.btn-reject:hover {
    opacity: 0.9;
}

.page-header {
    padding: 80px 20px;
    background: #8b7355;
    color: #fff;
    text-align: center;
}

.header-content h1 {
    font-size: 42px;
    margin-bottom: 15px;
    font-weight: 400;
}

.header-content p {
    font-size: 19px;
}

.about-intro {
    padding: 100px 20px;
    background: #fff;
}

.contact-page {
    padding: 80px 20px;
    background: #fff;
}

.contact-info {
    max-width: 600px;
    margin: 0 auto;
}

.contact-info h2 {
    font-size: 28px;
    margin-bottom: 30px;
    color: #3a3a3a;
    font-weight: 400;
}

.info-block {
    margin-bottom: 35px;
}

.info-block h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #8b7355;
    font-weight: 400;
}

.info-block p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
}

.services-page {
    padding: 80px 20px;
    background: #fff;
}

.services-grid {
    max-width: 1000px;
    margin: 60px auto 0;
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.service-card {
    display: flex;
    gap: 30px;
    padding: 30px;
    background: #fafafa;
    border-radius: 4px;
    border: 1px solid #e8e8e8;
}

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

.service-card h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: #3a3a3a;
    font-weight: 400;
}

.service-card p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 15px;
}

.service-card-price {
    font-size: 26px;
    font-weight: bold;
    color: #8b7355;
}

.thanks-page {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
    background: #f5f0eb;
}

.thanks-content {
    max-width: 600px;
    text-align: center;
    background: #fff;
    padding: 60px 40px;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.thanks-content h1 {
    font-size: 38px;
    margin-bottom: 20px;
    color: #8b7355;
    font-weight: 400;
}

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

.thanks-service-info {
    background: #f5f0eb;
    padding: 20px;
    margin: 30px 0;
    border-radius: 4px;
    font-size: 16px;
}

.btn-home {
    display: inline-block;
    margin-top: 30px;
    padding: 14px 35px;
    background: #8b7355;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    transition: background 0.3s;
}

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

.legal-page {
    padding: 80px 20px;
    background: #fff;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
}

.legal-content h1 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #3a3a3a;
    font-weight: 400;
}

.legal-content h2 {
    font-size: 24px;
    margin-top: 40px;
    margin-bottom: 15px;
    color: #3a3a3a;
    font-weight: 400;
}

.legal-content h3 {
    font-size: 19px;
    margin-top: 30px;
    margin-bottom: 12px;
    color: #555;
    font-weight: 400;
}

.legal-content p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #555;
}

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

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

@media (max-width: 768px) {
    .split-layout {
        flex-direction: column;
    }

    .grid-benefits {
        flex-direction: column;
    }

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

    .footer-content {
        flex-direction: column;
        gap: 30px;
    }

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-overlay h1 {
        font-size: 32px;
    }

    .nav-links {
        gap: 15px;
    }

    .nav-links a {
        font-size: 13px;
    }
}