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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 20px;
    z-index: 9999;
    display: none;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

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

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

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

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

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

.btn-cookie-accept {
    background-color: #4a7c59;
    color: #ffffff;
}

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

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

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

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

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

.nav-brand {
    font-size: 22px;
    font-weight: 700;
    color: #2c2c2c;
    letter-spacing: -0.5px;
}

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

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

.nav-links a:hover {
    color: #4a7c59;
}

.nav-disclaimer {
    font-size: 11px;
    color: #666;
    font-style: italic;
}

.ad-label {
    background-color: #f0f0f0;
    padding: 4px 10px;
    border-radius: 3px;
}

.hero-magazine {
    margin-bottom: 60px;
}

.hero-image-wrapper {
    position: relative;
    height: 600px;
    overflow: hidden;
    background-color: #d4d4d4;
}

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

.hero-overlay {
    position: absolute;
    bottom: 60px;
    left: 60px;
    max-width: 600px;
    background-color: rgba(255,255,255,0.95);
    padding: 40px;
}

.hero-overlay h1 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.hero-subtext {
    font-size: 18px;
    color: #555;
    font-style: italic;
}

.intro-section {
    max-width: 1200px;
    margin: 0 auto 80px;
    padding: 0 30px;
}

.magazine-grid {
    display: flex;
    gap: 50px;
}

.intro-main {
    flex: 2;
}

.intro-main h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.intro-main p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #3c3c3c;
}

.intro-sidebar {
    flex: 1;
}

.highlight-card {
    background-color: #4a7c59;
    color: #ffffff;
    padding: 32px;
}

.highlight-card h3 {
    font-size: 22px;
    margin-bottom: 20px;
}

.benefit-list {
    list-style: none;
}

.benefit-list li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.2);
    font-size: 15px;
}

.benefit-list li:last-child {
    border-bottom: none;
}

.visual-break {
    margin-bottom: 80px;
    background-color: #f5f5f5;
}

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

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

.split-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

.split-content {
    flex: 1;
    padding: 60px;
}

.split-content h3 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.split-content p {
    font-size: 17px;
    margin-bottom: 16px;
    color: #3c3c3c;
}

.services-preview {
    max-width: 1200px;
    margin: 0 auto 80px;
    padding: 0 30px;
}

.section-header-center {
    text-align: center;
    margin-bottom: 50px;
}

.section-header-center h2 {
    font-size: 40px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.section-subtitle {
    font-size: 18px;
    color: #666;
    font-style: italic;
}

.services-magazine-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.service-card-large {
    flex: 1 1 100%;
    display: flex;
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    overflow: hidden;
}

.service-card-large .service-image-container {
    flex: 1;
    background-color: #d4d4d4;
}

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

.service-card-large .service-content {
    flex: 1;
    padding: 40px;
}

.service-card-medium {
    flex: 1 1 calc(50% - 15px);
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    overflow: hidden;
}

.service-card-medium .service-image-container {
    background-color: #d4d4d4;
    height: 220px;
}

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

.service-card-medium .service-content {
    padding: 28px;
}

.service-card-small {
    flex: 1 1 calc(33.333% - 20px);
    background-color: #f9f9f9;
    border: 1px solid #e0e0e0;
    padding: 28px;
}

.service-content h3 {
    font-size: 24px;
    margin-bottom: 14px;
    color: #1a1a1a;
}

.service-card-small h3 {
    font-size: 20px;
}

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

.service-card-small p {
    font-size: 15px;
}

.service-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-top: 16px;
    border-top: 1px solid #e0e0e0;
}

.service-duration {
    font-size: 14px;
    color: #777;
}

.service-price {
    font-size: 26px;
    font-weight: 700;
    color: #4a7c59;
}

.service-card-small .service-price {
    font-size: 22px;
}

.btn-select-service {
    background-color: #2c2c2c;
    color: #ffffff;
    border: none;
    padding: 14px 28px;
    font-size: 15px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 100%;
}

.btn-select-service:hover {
    background-color: #4a7c59;
}

.btn-select-service.selected {
    background-color: #4a7c59;
}

.story-section {
    max-width: 1200px;
    margin: 0 auto 80px;
    padding: 0 30px;
}

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

.narrow-content h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.narrow-content p {
    font-size: 18px;
    margin-bottom: 22px;
    color: #3c3c3c;
}

.story-image-inline {
    margin: 40px 0;
    background-color: #d4d4d4;
}

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

.image-caption {
    padding: 16px;
    font-size: 14px;
    font-style: italic;
    color: #666;
    background-color: #f5f5f5;
}

.testimonial-section {
    background-color: #f0f0f0;
    padding: 60px 30px;
    margin-bottom: 80px;
}

.testimonial-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 30px;
}

.testimonial-card {
    flex: 1;
    background-color: #ffffff;
    padding: 32px;
}

.testimonial-text {
    font-size: 17px;
    margin-bottom: 20px;
    color: #3c3c3c;
    font-style: italic;
    line-height: 1.6;
}

.testimonial-author {
    font-size: 14px;
    color: #777;
    font-weight: 600;
}

.cta-form-section {
    max-width: 1200px;
    margin: 0 auto 80px;
    padding: 0 30px;
}

.form-container-magazine {
    max-width: 700px;
    margin: 0 auto;
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    padding: 50px;
}

.form-intro {
    margin-bottom: 40px;
}

.form-intro h2 {
    font-size: 32px;
    margin-bottom: 14px;
    color: #1a1a1a;
}

.form-intro p {
    font-size: 16px;
    color: #666;
}

.form-notice {
    background-color: #f9f9f9;
    padding: 16px;
    margin-bottom: 30px;
    border-left: 4px solid #4a7c59;
}

.form-notice p {
    font-size: 15px;
    color: #2c2c2c;
    font-weight: 600;
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

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

.form-group label {
    font-size: 14px;
    margin-bottom: 8px;
    color: #2c2c2c;
    font-weight: 600;
}

.form-group input,
.form-group textarea {
    padding: 14px;
    font-size: 16px;
    border: 1px solid #d0d0d0;
    font-family: 'Georgia', 'Times New Roman', serif;
    transition: border-color 0.3s ease;
}

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

.btn-submit {
    background-color: #4a7c59;
    color: #ffffff;
    border: none;
    padding: 18px 36px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.info-columns {
    background-color: #2c2c2c;
    color: #ffffff;
    padding: 60px 30px;
    margin-bottom: 0;
}

.info-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 50px;
}

.info-block {
    flex: 1;
}

.info-block h3 {
    font-size: 22px;
    margin-bottom: 14px;
}

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

.main-footer {
    background-color: #1a1a1a;
    color: #d0d0d0;
    padding: 50px 30px 20px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto 40px;
    display: flex;
    gap: 50px;
}

.footer-column {
    flex: 1;
}

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

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

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

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

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

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

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto 30px;
    padding: 24px;
    background-color: rgba(255,255,255,0.05);
    border-left: 3px solid #4a7c59;
}

.footer-disclaimer p {
    font-size: 13px;
    line-height: 1.7;
    color: #b0b0b0;
}

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

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

@media (max-width: 968px) {
    .magazine-grid,
    .split-visual,
    .testimonial-grid,
    .info-grid,
    .footer-content {
        flex-direction: column;
    }

    .hero-overlay {
        left: 30px;
        right: 30px;
        bottom: 30px;
        padding: 30px;
    }

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

    .service-card-medium,
    .service-card-small {
        flex: 1 1 100%;
    }

    .form-container-magazine {
        padding: 30px;
    }
}

.thanks-page {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-container {
    max-width: 600px;
    text-align: center;
    padding: 60px 30px;
}

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

.thanks-container p {
    font-size: 18px;
    margin-bottom: 16px;
    color: #555;
}

.thanks-service-info {
    background-color: #f5f5f5;
    padding: 24px;
    margin: 30px 0;
    border-left: 4px solid #4a7c59;
}

.thanks-service-info p {
    font-size: 16px;
    font-weight: 600;
    color: #2c2c2c;
}

.btn-return {
    display: inline-block;
    background-color: #4a7c59;
    color: #ffffff;
    text-decoration: none;
    padding: 16px 36px;
    font-size: 16px;
    margin-top: 20px;
    transition: background-color 0.3s ease;
}

.btn-return:hover {
    background-color: #3d6549;
}

.page-header {
    background-color: #f5f5f5;
    padding: 60px 30px;
    margin-bottom: 50px;
}

.page-header-content {
    max-width: 1200px;
    margin: 0 auto;
}

.page-header h1 {
    font-size: 42px;
    margin-bottom: 14px;
    color: #1a1a1a;
}

.page-header p {
    font-size: 18px;
    color: #666;
}

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

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

.content-narrow h2 {
    font-size: 32px;
    margin: 40px 0 20px;
    color: #1a1a1a;
}

.content-narrow h3 {
    font-size: 24px;
    margin: 30px 0 16px;
    color: #2c2c2c;
}

.content-narrow p {
    font-size: 17px;
    margin-bottom: 18px;
    color: #3c3c3c;
}

.content-narrow ul,
.content-narrow ol {
    margin-bottom: 20px;
    padding-left: 30px;
}

.content-narrow li {
    font-size: 17px;
    margin-bottom: 10px;
    color: #3c3c3c;
}

.contact-info-grid {
    display: flex;
    gap: 40px;
    margin-top: 40px;
}

.contact-info-block {
    flex: 1;
    background-color: #f9f9f9;
    padding: 32px;
    border-left: 4px solid #4a7c59;
}

.contact-info-block h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.contact-info-block p {
    font-size: 16px;
    margin-bottom: 8px;
    color: #555;
}

@media (max-width: 768px) {
    .contact-info-grid {
        flex-direction: column;
    }
}