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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    color: #fff;
    padding: 20px;
    z-index: 9999;
    display: none;
}

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

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

.cookie-content p {
    margin: 0 20px 0 0;
    flex: 1;
    min-width: 250px;
}

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

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

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

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

.btn-accept:hover {
    background: #c79463;
}

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

.btn-reject:hover {
    background: #777;
}

.main-nav {
    background: #fff;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.brand {
    font-size: 24px;
    font-weight: bold;
    color: #6b4423;
}

.ad-disclosure {
    font-size: 11px;
    color: #888;
    padding: 4px 10px;
    border: 1px solid #ddd;
    border-radius: 3px;
    margin: 0 20px;
}

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

.nav-menu a {
    text-decoration: none;
    color: #2c2c2c;
    font-size: 16px;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: #d4a574;
}

.editorial-layout {
    background: #fff;
}

.story-flow {
    max-width: 100%;
}

.hero-story {
    position: relative;
    margin-bottom: 60px;
}

.hero-image-container {
    width: 100%;
    height: 500px;
    background-color: #6b4423;
    overflow: hidden;
}

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

.hero-text-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    background: rgba(0, 0, 0, 0.4);
    padding: 40px 60px;
    border-radius: 8px;
}

.hero-text-overlay h1 {
    font-size: 48px;
    margin-bottom: 15px;
    font-weight: normal;
    letter-spacing: 1px;
}

.subtitle {
    font-size: 20px;
    font-style: italic;
    opacity: 0.95;
}

.narrow-column {
    max-width: 680px;
    margin: 0 auto;
    padding: 0 30px;
}

.intro-narrative {
    padding: 60px 0;
}

.opening-line {
    font-size: 22px;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #444;
}

.intro-narrative p {
    margin-bottom: 20px;
    font-size: 18px;
}

.inline-cta {
    margin: 40px 0;
    text-align: center;
}

.text-link-cta {
    display: inline-block;
    color: #6b4423;
    font-size: 18px;
    text-decoration: none;
    border-bottom: 2px solid #d4a574;
    padding-bottom: 3px;
    transition: color 0.3s;
}

.text-link-cta:hover {
    color: #d4a574;
}

.story-section {
    padding: 60px 0;
    background: #f9f9f9;
}

.story-section h2 {
    font-size: 32px;
    margin-bottom: 25px;
    font-weight: normal;
    color: #6b4423;
}

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

.story-image {
    width: 100%;
    height: auto;
    margin: 35px 0;
    border-radius: 6px;
    object-fit: cover;
    background-color: #e8e8e8;
}

.services-inline {
    padding: 70px 0;
    background: #fff;
}

.services-inline h2 {
    font-size: 36px;
    margin-bottom: 50px;
    text-align: center;
    color: #6b4423;
    font-weight: normal;
}

.service-card-inline {
    margin-bottom: 45px;
    padding: 30px;
    background: #fafafa;
    border-left: 4px solid #d4a574;
}

.service-card-inline h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: #2c2c2c;
    font-weight: normal;
}

.service-card-inline p {
    font-size: 17px;
    margin-bottom: 15px;
    color: #555;
}

.price-tag {
    font-size: 26px;
    color: #6b4423;
    font-weight: bold;
    margin-bottom: 18px;
}

.select-service-btn {
    background: #6b4423;
    color: #fff;
    border: none;
    padding: 12px 28px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 4px;
    transition: background 0.3s;
}

.select-service-btn:hover {
    background: #d4a574;
}

.form-section {
    padding: 70px 0;
    background: #f4f4f4;
}

.form-section h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #6b4423;
    font-weight: normal;
}

.form-section > .narrow-column > p {
    font-size: 18px;
    margin-bottom: 35px;
}

.editorial-form {
    background: #fff;
    padding: 40px;
    border-radius: 6px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 16px;
    color: #2c2c2c;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-family: 'Georgia', serif;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #d4a574;
}

.submit-btn {
    background: #6b4423;
    color: #fff;
    border: none;
    padding: 14px 40px;
    font-size: 18px;
    cursor: pointer;
    border-radius: 4px;
    transition: background 0.3s;
}

.submit-btn:hover {
    background: #d4a574;
}

.closing-section {
    padding: 50px 0;
    background: #fff;
}

.disclaimer-text {
    font-size: 13px;
    color: #777;
    line-height: 1.6;
    border-top: 1px solid #e0e0e0;
    padding-top: 25px;
}

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

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

.footer-column {
    flex: 1;
    min-width: 220px;
}

.footer-column h4 {
    margin-bottom: 15px;
    font-size: 18px;
    color: #d4a574;
}

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

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

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

.footer-column a:hover {
    color: #d4a574;
}

.footer-column p {
    font-size: 14px;
    color: #ccc;
    margin-bottom: 8px;
}

.thanks-page {
    max-width: 700px;
    margin: 80px auto;
    padding: 60px 40px;
    background: #fff;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.thanks-page h1 {
    font-size: 38px;
    color: #6b4423;
    margin-bottom: 20px;
    font-weight: normal;
}

.thanks-page p {
    font-size: 18px;
    margin-bottom: 15px;
    line-height: 1.7;
}

.thanks-page .back-link {
    display: inline-block;
    margin-top: 30px;
    color: #6b4423;
    text-decoration: none;
    border-bottom: 2px solid #d4a574;
    padding-bottom: 3px;
    transition: color 0.3s;
}

.thanks-page .back-link:hover {
    color: #d4a574;
}

.page-content {
    max-width: 900px;
    margin: 60px auto;
    padding: 40px;
    background: #fff;
}

.page-content h1 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #6b4423;
    font-weight: normal;
}

.page-content h2 {
    font-size: 26px;
    margin: 35px 0 18px;
    color: #2c2c2c;
    font-weight: normal;
}

.page-content p {
    font-size: 17px;
    margin-bottom: 18px;
    line-height: 1.7;
}

.page-content ul {
    margin: 20px 0;
    padding-left: 30px;
}

.page-content li {
    margin-bottom: 10px;
    font-size: 17px;
}

.contact-info {
    margin: 30px 0;
    padding: 25px;
    background: #f9f9f9;
    border-left: 4px solid #d4a574;
}

.contact-info p {
    margin-bottom: 12px;
    font-size: 17px;
}

.contact-info strong {
    color: #6b4423;
}

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        align-items: flex-start;
    }

    .ad-disclosure {
        margin: 10px 0;
    }

    .nav-menu {
        flex-direction: column;
        gap: 15px;
        margin-top: 15px;
    }

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

    .subtitle {
        font-size: 16px;
    }

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