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

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

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

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

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #8b4513;
    font-family: 'Arial', sans-serif;
}

.nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

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

.nav a:hover {
    color: #8b4513;
}

.ad-notice {
    font-size: 12px;
    color: #777;
    padding: 4px 10px;
    border: 1px solid #ddd;
    border-radius: 3px;
    background-color: #f9f9f9;
}

.editorial-content {
    background-color: #ffffff;
    margin: 40px auto;
    max-width: 900px;
}

.article-header {
    margin-bottom: 40px;
}

.header-image {
    width: 100%;
    height: 500px;
    background-size: cover;
    background-position: center;
    background-color: #d4a373;
    display: flex;
    align-items: flex-end;
    position: relative;
}

.header-overlay {
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    width: 100%;
    padding: 60px 40px 40px;
}

.header-overlay h1 {
    color: #ffffff;
    font-size: 42px;
    line-height: 1.3;
    max-width: 700px;
}

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

.intro-section {
    margin-bottom: 50px;
}

.lead-text {
    font-size: 22px;
    line-height: 1.6;
    margin-bottom: 25px;
    color: #34495e;
}

.article-body p {
    margin-bottom: 20px;
    font-size: 17px;
}

.inline-image-wrapper {
    margin: 50px 0;
    text-align: center;
}

.inline-image-wrapper img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    background-color: #d4a373;
}

.image-caption {
    font-size: 14px;
    color: #777;
    margin-top: 12px;
    font-style: italic;
}

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

.story-section h2 {
    font-size: 32px;
    margin-bottom: 25px;
    color: #2c3e50;
}

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

.cta-link {
    display: inline-block;
    padding: 14px 32px;
    background-color: #8b4513;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-size: 16px;
    transition: background-color 0.3s;
}

.cta-link:hover {
    background-color: #6b3410;
}

.services-editorial {
    margin: 60px 0;
}

.services-editorial h2 {
    font-size: 36px;
    margin-bottom: 50px;
    text-align: center;
    color: #2c3e50;
}

.service-item {
    display: flex;
    gap: 40px;
    margin-bottom: 60px;
    align-items: center;
}

.service-item.reverse {
    flex-direction: row-reverse;
}

.service-visual {
    flex: 0 0 350px;
}

.service-visual img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    background-color: #d4a373;
}

.service-text {
    flex: 1;
}

.service-text h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #8b4513;
}

.service-text p {
    margin-bottom: 12px;
}

.service-duration {
    font-size: 15px;
    color: #555;
    font-style: italic;
}

.service-price {
    font-size: 20px;
    font-weight: 700;
    color: #8b4513;
    margin-top: 15px;
}

.trust-section {
    margin: 60px 0;
    background-color: #f9f7f4;
    padding: 40px;
    border-radius: 4px;
}

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

.trust-elements {
    display: flex;
    gap: 30px;
    margin-top: 40px;
}

.trust-item {
    flex: 1;
}

.trust-item h4 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #8b4513;
}

.trust-item p {
    font-size: 16px;
}

.form-section {
    margin: 60px 0;
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    padding: 40px;
    border-radius: 4px;
}

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

.form-section > p {
    margin-bottom: 30px;
    color: #555;
}

.booking-form {
    max-width: 600px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #2c3e50;
}

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

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

.btn-submit {
    background-color: #8b4513;
    color: #ffffff;
    padding: 14px 40px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.disclaimer-section {
    margin: 60px 0;
    padding: 30px;
    background-color: #f0f0f0;
    border-left: 4px solid #8b4513;
}

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

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

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

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

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

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

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

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

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

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #34495e;
    font-size: 13px;
    color: #95a5a6;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #34495e;
    color: #ffffff;
    padding: 20px;
    z-index: 1000;
    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: 30px;
}

.cookie-content p {
    margin: 0;
    font-size: 14px;
    flex: 1;
}

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

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

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

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

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

.btn-reject:hover {
    opacity: 0.8;
}

.thanks-page {
    text-align: center;
    padding: 80px 20px;
}

.thanks-page h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #8b4513;
}

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

.thanks-page .selected-service {
    font-weight: 600;
    color: #2c3e50;
}

.thanks-page .btn-home {
    display: inline-block;
    margin-top: 30px;
    padding: 14px 32px;
    background-color: #8b4513;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.thanks-page .btn-home:hover {
    background-color: #6b3410;
}

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

.page-content h1 {
    font-size: 42px;
    margin-bottom: 30px;
    color: #2c3e50;
}

.page-content h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #8b4513;
}

.page-content h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #2c3e50;
}

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

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

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

.contact-info {
    background-color: #f9f7f4;
    padding: 30px;
    border-radius: 4px;
    margin: 30px 0;
}

.contact-info h3 {
    margin-top: 0;
}

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

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 20px;
    }

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

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

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

    .service-visual {
        flex: 0 0 auto;
        width: 100%;
    }

    .trust-elements {
        flex-direction: column;
    }

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

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