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

.ad-disclosure {
    background-color: #f0f0f0;
    padding: 8px 20px;
    text-align: center;
    font-size: 13px;
    color: #666;
    border-bottom: 1px solid #ddd;
}

.main-nav {
    background-color: #fff;
    border-bottom: 2px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #2c2c2c;
    letter-spacing: -0.5px;
}

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

.nav-links a {
    text-decoration: none;
    color: #2c2c2c;
    font-size: 15px;
    font-family: 'Arial', sans-serif;
    transition: color 0.3s;
}

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

.hero-magazine {
    max-width: 1400px;
    margin: 60px auto;
    padding: 0 40px;
}

.hero-content-grid {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.hero-text-large {
    flex: 1;
    padding-top: 40px;
}

.hero-text-large h1 {
    font-size: 56px;
    line-height: 1.2;
    margin-bottom: 30px;
    font-weight: 700;
    color: #1a1a1a;
}

.lead-text {
    font-size: 20px;
    line-height: 1.8;
    color: #4a4a4a;
}

.hero-image-offset {
    flex: 1;
    position: relative;
    top: -20px;
}

.hero-image-offset img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    background-color: #e8e3df;
}

.magazine-intro {
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 40px;
}

.intro-columns {
    display: flex;
    gap: 80px;
}

.column-narrow {
    flex: 0 0 350px;
}

.column-narrow h2 {
    font-size: 32px;
    line-height: 1.3;
    margin-bottom: 20px;
}

.column-wide {
    flex: 1;
}

.column-wide p {
    font-size: 18px;
    margin-bottom: 25px;
}

.services-highlight {
    max-width: 1400px;
    margin: 100px auto;
    padding: 0 40px;
}

.services-header-offset {
    margin-bottom: 50px;
    max-width: 700px;
}

.services-header-offset h2 {
    font-size: 42px;
    margin-bottom: 15px;
}

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

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

.service-card-featured {
    flex: 1 1 100%;
    display: flex;
    gap: 40px;
    background-color: #fff;
    padding: 40px;
    border: 1px solid #e0e0e0;
}

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

.service-card-wide {
    flex: 1 1 100%;
    display: flex;
    gap: 40px;
    background-color: #fff;
    padding: 40px;
    border: 1px solid #e0e0e0;
}

.service-image-wrapper {
    position: relative;
    overflow: hidden;
}

.service-card-featured .service-image-wrapper {
    flex: 1;
}

.service-card-wide .service-image-wrapper {
    flex: 1;
}

.service-card-compact .service-image-wrapper {
    width: 100%;
    height: 250px;
}

.service-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background-color: #e8e3df;
    display: block;
}

.service-content {
    flex: 1;
    padding: 20px;
}

.service-card-compact .service-content {
    padding: 30px;
}

.service-content h3 {
    font-size: 26px;
    margin-bottom: 15px;
}

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

.price-tag {
    font-size: 22px;
    font-weight: 700;
    color: #8b5a3c;
    margin: 25px 0;
}

.cta-link {
    display: inline-block;
    padding: 12px 28px;
    background-color: #2c2c2c;
    color: #fff;
    text-decoration: none;
    font-family: 'Arial', sans-serif;
    font-size: 15px;
    transition: background-color 0.3s;
}

.cta-link:hover {
    background-color: #8b5a3c;
}

.philosophy-section {
    background-color: #f5f1ed;
    padding: 80px 0;
    margin: 100px 0;
}

.philosophy-layout {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.philosophy-quote {
    flex: 0 0 400px;
}

.philosophy-quote blockquote {
    font-size: 28px;
    line-height: 1.5;
    font-style: italic;
    color: #3a3a3a;
    border-left: 4px solid #8b5a3c;
    padding-left: 30px;
}

.philosophy-content {
    flex: 1;
}

.philosophy-content h2 {
    font-size: 36px;
    margin-bottom: 25px;
}

.philosophy-content p {
    font-size: 18px;
    margin-bottom: 20px;
}

.testimonials-inline {
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 40px;
}

.testimonials-grid {
    display: flex;
    gap: 40px;
}

.testimonial-card {
    flex: 1;
    padding: 35px;
    background-color: #fff;
    border-left: 3px solid #8b5a3c;
}

.testimonial-text {
    font-size: 17px;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-author {
    font-size: 14px;
    color: #666;
    font-family: 'Arial', sans-serif;
}

.form-section {
    max-width: 1400px;
    margin: 100px auto;
    padding: 0 40px;
}

.form-container-editorial {
    max-width: 900px;
    margin: 0 auto;
}

.form-intro {
    text-align: center;
    margin-bottom: 50px;
}

.form-intro h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

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

.booking-form {
    background-color: #fff;
    padding: 50px;
    border: 1px solid #e0e0e0;
}

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

.form-step label {
    display: block;
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 600;
}

.service-options {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.service-option {
    display: flex;
    align-items: center;
    padding: 18px;
    border: 2px solid #e0e0e0;
    cursor: pointer;
    transition: all 0.3s;
}

.service-option:hover {
    border-color: #8b5a3c;
    background-color: #fafafa;
}

.service-option input[type="radio"] {
    margin-right: 15px;
    cursor: pointer;
}

.service-option span {
    font-size: 16px;
    font-family: 'Arial', sans-serif;
}

.form-fields {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 35px;
}

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

.field-group label {
    font-size: 15px;
    font-family: 'Arial', sans-serif;
    margin-bottom: 8px;
    font-weight: 600;
}

.field-group input {
    padding: 14px;
    font-size: 16px;
    border: 1px solid #ddd;
    font-family: 'Arial', sans-serif;
}

.field-group input:focus {
    outline: none;
    border-color: #8b5a3c;
}

.submit-btn {
    width: 100%;
    padding: 18px;
    background-color: #2c2c2c;
    color: #fff;
    font-size: 17px;
    font-family: 'Arial', sans-serif;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.additional-info {
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 40px;
}

.info-columns-asymmetric {
    display: flex;
    gap: 50px;
}

.info-block {
    flex: 1;
}

.info-block h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.info-block p {
    font-size: 16px;
    line-height: 1.7;
}

.main-footer {
    background-color: #2c2c2c;
    color: #fff;
    padding: 60px 0 30px;
    margin-top: 100px;
}

.footer-columns {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-col {
    flex: 1;
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 20px;
    font-family: 'Arial', sans-serif;
}

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

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

.footer-col ul li {
    margin-bottom: 12px;
}

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

.footer-col ul li a:hover {
    color: #fff;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding: 30px 40px 0;
    border-top: 1px solid #444;
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: #999;
    margin-bottom: 10px;
}

.disclaimer {
    font-size: 13px;
    line-height: 1.6;
    margin-top: 15px;
    font-style: italic;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #fff;
    border-top: 2px solid #e0e0e0;
    padding: 25px;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    z-index: 1000;
    display: none;
}

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

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

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

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

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

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

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

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

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

.page-header {
    max-width: 1400px;
    margin: 60px auto 40px;
    padding: 0 40px;
    text-align: center;
}

.page-header h1 {
    font-size: 48px;
    margin-bottom: 15px;
}

.header-subtitle {
    font-size: 20px;
    color: #666;
}

.about-story {
    max-width: 1400px;
    margin: 60px auto;
    padding: 0 40px;
}

.story-layout {
    display: flex;
    gap: 60px;
    align-items: center;
}

.story-text-primary {
    flex: 1;
}

.story-text-primary h2 {
    font-size: 36px;
    margin-bottom: 25px;
}

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

.story-image {
    flex: 0 0 500px;
}

.story-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    background-color: #e8e3df;
}

.team-philosophy {
    background-color: #f5f1ed;
    padding: 80px 0;
}

.philosophy-grid {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    gap: 50px;
}

.philosophy-point {
    flex: 1;
}

.philosophy-point h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.philosophy-point p {
    font-size: 16px;
    line-height: 1.7;
}

.about-space {
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 40px;
}

.space-description {
    display: flex;
    gap: 60px;
    align-items: center;
}

.space-text {
    flex: 1;
}

.space-text h2 {
    font-size: 36px;
    margin-bottom: 25px;
}

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

.space-image {
    flex: 0 0 500px;
}

.space-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    background-color: #e8e3df;
}

.values-section {
    max-width: 1000px;
    margin: 80px auto;
    padding: 0 40px;
}

.values-section h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 50px;
}

.values-list {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.value-item {
    flex: 1 1 calc(50% - 20px);
}

.value-item h3 {
    font-size: 22px;
    margin-bottom: 12px;
}

.value-item p {
    font-size: 16px;
    line-height: 1.7;
}

.cta-about {
    background-color: #8b5a3c;
    padding: 80px 0;
    text-align: center;
    color: #fff;
}

.cta-content h2 {
    font-size: 42px;
    margin-bottom: 15px;
}

.cta-content p {
    font-size: 20px;
    margin-bottom: 30px;
}

.btn-primary {
    display: inline-block;
    padding: 16px 40px;
    background-color: #fff;
    color: #2c2c2c;
    text-decoration: none;
    font-family: 'Arial', sans-serif;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-primary:hover {
    background-color: #2c2c2c;
    color: #fff;
}

.services-detailed {
    max-width: 1400px;
    margin: 60px auto;
    padding: 0 40px;
}

.service-detail {
    display: flex;
    gap: 60px;
    margin-bottom: 80px;
    align-items: flex-start;
}

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

.service-detail-image {
    flex: 0 0 500px;
}

.service-detail-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    background-color: #e8e3df;
}

.service-detail-content {
    flex: 1;
}

.service-detail-content h2 {
    font-size: 36px;
    margin-bottom: 15px;
}

.service-duration {
    font-size: 15px;
    color: #666;
    margin-bottom: 20px;
    font-family: 'Arial', sans-serif;
}

.service-detail-content p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 25px;
}

.service-detail-content h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 15px;
}

.service-detail-content ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 30px;
}

.service-detail-content ul li {
    font-size: 16px;
    line-height: 1.7;
    padding-left: 25px;
    position: relative;
    margin-bottom: 10px;
}

.service-detail-content ul li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #8b5a3c;
    font-weight: 700;
    font-size: 20px;
}

.service-price-large {
    font-size: 28px;
    font-weight: 700;
    color: #8b5a3c;
    margin: 30px 0;
}

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

.services-info h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 50px;
}

.info-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.info-card {
    flex: 1 1 calc(50% - 15px);
    background-color: #f5f1ed;
    padding: 35px;
}

.info-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.info-card p {
    font-size: 16px;
    line-height: 1.7;
}

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

.contact-layout {
    display: flex;
    gap: 60px;
}

.contact-main {
    flex: 1;
}

.contact-main h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.contact-main p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 40px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.contact-block h3 {
    font-size: 22px;
    margin-bottom: 12px;
}

.contact-block p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 5px;
}

.note {
    font-size: 14px;
    color: #666;
    font-style: italic;
}

.contact-sidebar {
    flex: 0 0 400px;
}

.info-box {
    background-color: #f5f1ed;
    padding: 35px;
    margin-bottom: 30px;
}

.info-box h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.info-box p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 15px;
}

.btn-secondary {
    display: inline-block;
    padding: 12px 28px;
    background-color: #2c2c2c;
    color: #fff;
    text-decoration: none;
    font-family: 'Arial', sans-serif;
    font-size: 15px;
    transition: background-color 0.3s;
}

.btn-secondary:hover {
    background-color: #8b5a3c;
}

.faq-section {
    max-width: 1000px;
    margin: 80px auto;
    padding: 0 40px;
}

.faq-section h2 {
    font-size: 38px;
    margin-bottom: 40px;
    text-align: center;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.faq-item {
    padding-bottom: 30px;
    border-bottom: 1px solid #e0e0e0;
}

.faq-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.faq-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
}

.thanks-container {
    max-width: 800px;
    margin: 100px auto;
    padding: 0 40px;
    text-align: center;
}

.thanks-content {
    background-color: #fff;
    padding: 60px;
    border: 1px solid #e0e0e0;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 30px;
    background-color: #8b5a3c;
    color: #fff;
    font-size: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.thanks-content h1 {
    font-size: 42px;
    margin-bottom: 25px;
}

.thanks-message {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 40px;
    color: #555;
}

.thanks-info {
    background-color: #f5f1ed;
    padding: 35px;
    margin-bottom: 40px;
    text-align: left;
}

.thanks-info h2 {
    font-size: 24px;
    margin-bottom: 20px;
}

.thanks-info ul {
    list-style: none;
    padding-left: 0;
}

.thanks-info ul li {
    font-size: 16px;
    line-height: 1.7;
    padding-left: 25px;
    position: relative;
    margin-bottom: 10px;
}

.thanks-info ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #8b5a3c;
    font-weight: 700;
}

.thanks-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
}

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

.legal-container {
    background-color: #fff;
    padding: 50px;
    border: 1px solid #e0e0e0;
}

.updated {
    font-size: 14px;
    color: #666;
    font-style: italic;
    margin-bottom: 30px;
}

.legal-container h2 {
    font-size: 28px;
    margin-top: 35px;
    margin-bottom: 20px;
}

.legal-container h3 {
    font-size: 22px;
    margin-top: 25px;
    margin-bottom: 15px;
}

.legal-container p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 15px;
}

.legal-container ul {
    margin-bottom: 20px;
    padding-left: 25px;
}

.legal-container ul li {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 10px;
}

.legal-container a {
    color: #8b5a3c;
    text-decoration: underline;
}

.legal-container a:hover {
    color: #2c2c2c;
}

@media (max-width: 1024px) {
    .hero-content-grid {
        flex-direction: column;
    }

    .intro-columns {
        flex-direction: column;
        gap: 40px;
    }

    .column-narrow {
        flex: 1;
    }

    .services-magazine-grid {
        flex-direction: column;
    }

    .service-card-compact {
        flex: 1 1 100%;
    }

    .philosophy-layout {
        flex-direction: column;
    }

    .philosophy-quote {
        flex: 1;
    }

    .testimonials-grid {
        flex-direction: column;
    }

    .story-layout {
        flex-direction: column;
    }

    .story-image {
        flex: 1;
    }

    .space-description {
        flex-direction: column;
    }

    .space-image {
        flex: 1;
    }

    .contact-layout {
        flex-direction: column;
    }

    .contact-sidebar {
        flex: 1;
    }

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

    .service-detail.reverse {
        flex-direction: column;
    }

    .service-detail-image {
        flex: 1;
    }
}

@media (max-width: 768px) {
    .nav-container {
        padding: 0 20px;
    }

    .hero-magazine {
        padding: 0 20px;
    }

    .hero-text-large h1 {
        font-size: 36px;
    }

    .lead-text {
        font-size: 17px;
    }

    .magazine-intro {
        padding: 0 20px;
    }

    .services-highlight {
        padding: 0 20px;
    }

    .service-card-featured {
        flex-direction: column;
        padding: 20px;
    }

    .service-card-wide {
        flex-direction: column;
        padding: 20px;
    }

    .footer-columns {
        flex-direction: column;
        gap: 40px;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .info-columns-asymmetric {
        flex-direction: column;
    }

    .philosophy-grid {
        flex-direction: column;
    }

    .values-list {
        flex-direction: column;
    }

    .value-item {
        flex: 1 1 100%;
    }

    .info-grid {
        flex-direction: column;
    }

    .info-card {
        flex: 1 1 100%;
    }

    .thanks-actions {
        flex-direction: column;
    }
}