* {
    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;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c2c2c;
    color: #fff;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

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

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

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

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

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

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

.btn-accept {
    background-color: #f4c430;
    color: #2c2c2c;
}

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

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

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

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

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    color: #2c2c2c;
}

.ad-notice {
    font-size: 11px;
    color: #666;
    background-color: #f0f0f0;
    padding: 4px 10px;
    border-radius: 3px;
}

.nav {
    display: flex;
    gap: 25px;
}

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

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

.editorial-flow {
    background-color: #fff;
}

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

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

.hero-image-container {
    width: 100%;
    height: 600px;
    overflow: hidden;
}

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

.hero-text-overlay {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: #fff;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 30px 50px;
    max-width: 800px;
}

.hero-text-overlay h1 {
    font-size: 42px;
    margin-bottom: 15px;
    font-weight: normal;
}

.subtitle {
    font-size: 18px;
    font-style: italic;
}

.article-body {
    padding: 40px 0;
}

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

.intro-text {
    font-size: 21px;
    line-height: 1.8;
    margin-bottom: 30px;
    color: #3a3a3a;
}

.article-body p {
    margin-bottom: 25px;
    font-size: 18px;
}

.article-body h2 {
    font-size: 32px;
    margin-top: 50px;
    margin-bottom: 25px;
    font-weight: normal;
    color: #2c2c2c;
}

.inline-image {
    margin: 50px 0;
    width: 100%;
}

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

.image-caption {
    font-size: 14px;
    font-style: italic;
    color: #666;
    margin-top: 10px;
    text-align: center;
}

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

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

.cta-link:hover {
    color: #b8905f;
    border-bottom-color: #b8905f;
}

.services-section {
    background-color: #f9f7f4;
    padding: 60px 0;
    margin: 60px 0;
}

.services-section h2 {
    text-align: center;
    margin-bottom: 40px;
}

.service-cards {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.service-card {
    display: flex;
    gap: 30px;
    background-color: #fff;
    border: 1px solid #e0e0e0;
    overflow: hidden;
}

.service-image {
    flex: 0 0 300px;
}

.service-image img {
    width: 100%;
    height: 100%;
}

.service-info {
    flex: 1;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

.service-info p {
    margin-bottom: 15px;
    font-size: 16px;
}

.price {
    font-size: 28px;
    color: #d4a574;
    font-weight: bold;
    margin: 15px 0;
}

.select-service {
    align-self: flex-start;
    background-color: #2c2c2c;
    color: #fff;
    border: none;
    padding: 12px 28px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.select-service:hover {
    background-color: #d4a574;
    color: #2c2c2c;
}

.contact-form-section {
    margin-top: 40px;
    padding: 40px;
    background-color: #fff;
    border: 1px solid #e0e0e0;
}

.contact-form-section h3 {
    font-size: 28px;
    margin-bottom: 15px;
    font-weight: normal;
}

.selected-service-info {
    font-size: 16px;
    margin-bottom: 30px;
    color: #666;
}

.selected-service-info span {
    font-weight: bold;
    color: #d4a574;
}

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

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

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

.form-group textarea {
    resize: vertical;
}

.btn-submit {
    background-color: #d4a574;
    color: #fff;
    border: none;
    padding: 14px 32px;
    font-size: 17px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background-color: #b8905f;
}

.disclaimer-section {
    margin: 50px 0;
    padding: 25px;
    background-color: #f9f7f4;
    border-left: 4px solid #d4a574;
}

.disclaimer-text {
    font-size: 14px;
    line-height: 1.6;
    color: #555;
}

.footer {
    background-color: #2c2c2c;
    color: #fff;
    padding: 50px 0 20px;
    margin-top: 60px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

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

.footer-column h4 {
    margin-bottom: 15px;
    font-size: 18px;
    font-weight: normal;
}

.footer-column p {
    font-size: 14px;
    line-height: 1.6;
    color: #ccc;
}

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

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

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

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

.footer-bottom {
    border-top: 1px solid #444;
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: #999;
}

@media (max-width: 768px) {
    .hero-text-overlay h1 {
        font-size: 28px;
    }

    .subtitle {
        font-size: 16px;
    }

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

    .service-image {
        flex: 0 0 auto;
        height: 250px;
    }

    .nav {
        flex-basis: 100%;
        justify-content: center;
    }
}