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

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.7;
    color: #2c2c2c;
    background-color: #fafaf8;
}

.ad-disclosure {
    background-color: #f4f1ed;
    border-bottom: 1px solid #d4cfc7;
    padding: 8px 20px;
    text-align: center;
    font-size: 12px;
    color: #6b6b6b;
    font-family: 'Arial', sans-serif;
}

.main-nav {
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-container {
    max-width: 700px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 22px;
    font-weight: 600;
    color: #1a1a1a;
    text-decoration: none;
    letter-spacing: -0.5px;
}

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

.nav-links a {
    color: #4a4a4a;
    text-decoration: none;
    font-size: 14px;
    font-family: 'Arial', sans-serif;
    transition: color 0.2s;
}

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

.editorial-flow {
    max-width: 700px;
    margin: 0 auto;
    padding: 60px 30px;
}

.story-container {
    background-color: #ffffff;
}

.story-header {
    margin-bottom: 50px;
}

.hero-image-wrapper {
    margin-bottom: 40px;
    background-color: #e8e3db;
    overflow: hidden;
}

.hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.story-title {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 15px;
    font-weight: 400;
    color: #1a1a1a;
}

.story-lead {
    font-size: 22px;
    color: #6b6b6b;
    font-style: italic;
    margin-bottom: 40px;
}

.story-intro {
    margin-bottom: 60px;
    font-size: 19px;
    line-height: 1.8;
}

.story-intro p {
    margin-bottom: 25px;
}

.inline-image-block {
    margin: 60px 0;
    background-color: #f5f2ee;
    padding: 30px;
}

.content-image {
    width: 100%;
    height: auto;
    display: block;
    margin-bottom: 15px;
    object-fit: cover;
}

.image-caption {
    font-size: 14px;
    color: #7a7a7a;
    font-style: italic;
    text-align: center;
}

.story-section {
    margin: 60px 0;
}

.story-section h2 {
    font-size: 32px;
    margin-bottom: 25px;
    font-weight: 400;
    color: #1a1a1a;
}

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

.services-preview {
    margin: 80px 0;
}

.services-preview h2 {
    font-size: 36px;
    margin-bottom: 50px;
    font-weight: 400;
    text-align: center;
}

.service-card-inline {
    display: flex;
    flex-direction: column;
    margin-bottom: 60px;
    background-color: #fafaf8;
    padding: 30px;
}

.service-card-inline.reverse {
    background-color: #f5f2ee;
}

.service-image {
    width: 100%;
    height: auto;
    margin-bottom: 25px;
    object-fit: cover;
}

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

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

.price-tag {
    display: inline-block;
    font-size: 20px;
    font-weight: 600;
    color: #8b7355;
    font-family: 'Arial', sans-serif;
}

.cta-section {
    margin: 80px 0;
    padding: 50px 40px;
    background-color: #2c2c2c;
    color: #ffffff;
    text-align: center;
}

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

.cta-section p {
    font-size: 18px;
    margin-bottom: 30px;
    line-height: 1.6;
}

.cta-button {
    display: inline-block;
    background-color: #8b7355;
    color: #ffffff;
    padding: 16px 45px;
    text-decoration: none;
    font-size: 16px;
    font-family: 'Arial', sans-serif;
    transition: background-color 0.3s;
}

.cta-button:hover {
    background-color: #a38766;
}

.trust-section {
    margin: 70px 0;
}

.trust-section h2 {
    font-size: 32px;
    margin-bottom: 25px;
    font-weight: 400;
}

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

.form-section {
    margin: 80px 0;
    padding: 50px;
    background-color: #f5f2ee;
}

.form-section h2 {
    font-size: 32px;
    margin-bottom: 15px;
    font-weight: 400;
}

.form-section > p {
    font-size: 17px;
    margin-bottom: 35px;
    color: #4a4a4a;
}

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

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

.form-group label {
    font-size: 15px;
    margin-bottom: 8px;
    font-family: 'Arial', sans-serif;
    color: #2c2c2c;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 15px;
    font-size: 16px;
    border: 1px solid #c4bcb2;
    background-color: #ffffff;
    font-family: 'Arial', sans-serif;
    color: #2c2c2c;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: 2px solid #8b7355;
    border-color: #8b7355;
}

.submit-button {
    padding: 16px 40px;
    background-color: #2c2c2c;
    color: #ffffff;
    border: none;
    font-size: 16px;
    font-family: 'Arial', sans-serif;
    cursor: pointer;
    transition: background-color 0.3s;
    align-self: flex-start;
}

.submit-button:hover {
    background-color: #4a4a4a;
}

.story-closing {
    margin: 80px 0 60px;
    font-size: 19px;
    line-height: 1.8;
    text-align: center;
    font-style: italic;
    color: #4a4a4a;
}

.story-closing p {
    margin-bottom: 20px;
}

.main-footer {
    background-color: #2c2c2c;
    color: #d4d4d4;
    padding: 60px 30px 30px;
}

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

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

.footer-section h3 {
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: 600;
    color: #ffffff;
}

.footer-section h4 {
    font-size: 16px;
    margin-bottom: 12px;
    font-weight: 600;
    color: #ffffff;
    font-family: 'Arial', sans-serif;
}

.footer-section p {
    font-size: 14px;
    line-height: 1.6;
    font-family: 'Arial', sans-serif;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: #b8b8b8;
    text-decoration: none;
    font-size: 14px;
    font-family: 'Arial', sans-serif;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: #ffffff;
}

.footer-disclaimer {
    max-width: 800px;
    margin: 0 auto 40px;
    padding: 30px;
    background-color: #3a3a3a;
    border-left: 4px solid #8b7355;
}

.footer-disclaimer p {
    font-size: 13px;
    line-height: 1.6;
    font-family: 'Arial', sans-serif;
    color: #c4c4c4;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #4a4a4a;
    font-size: 13px;
    font-family: 'Arial', sans-serif;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 25px 30px;
    z-index: 1000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    font-size: 14px;
    line-height: 1.6;
    font-family: 'Arial', sans-serif;
}

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

.cookie-btn {
    padding: 12px 30px;
    border: none;
    font-size: 14px;
    font-family: 'Arial', sans-serif;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

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

.cookie-btn.reject {
    background-color: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
}

.cookie-btn.reject:hover {
    background-color: #2c2c2c;
}

.thanks-container {
    max-width: 700px;
    margin: 80px auto;
    padding: 60px 30px;
    text-align: center;
}

.thanks-container h1 {
    font-size: 42px;
    margin-bottom: 25px;
    font-weight: 400;
    color: #1a1a1a;
}

.thanks-container p {
    font-size: 19px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #4a4a4a;
}

.thanks-container .service-reference {
    margin: 40px 0;
    padding: 30px;
    background-color: #f5f2ee;
    font-size: 17px;
}

.thanks-container a {
    display: inline-block;
    margin-top: 30px;
    color: #8b7355;
    text-decoration: none;
    font-size: 16px;
    font-family: 'Arial', sans-serif;
}

.thanks-container a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .story-title {
        font-size: 36px;
    }

    .story-lead {
        font-size: 18px;
    }

    .nav-links {
        gap: 15px;
    }

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

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

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

    .form-section {
        padding: 30px 20px;
    }
}