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

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

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 20px;
    z-index: 9999;
    display: none;
}

.cookie-banner.show {
    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;
    min-width: 300px;
    margin: 0;
}

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

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

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

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

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

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

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

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

.logo {
    font-size: 24px;
    font-weight: bold;
    color: #2c2c2c;
    text-decoration: none;
    letter-spacing: 0.5px;
}

.ad-disclosure {
    font-size: 12px;
    color: #666;
    font-style: italic;
    padding: 5px 15px;
    border: 1px solid #ddd;
    border-radius: 3px;
}

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

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

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

.hero-magazine {
    position: relative;
    height: 600px;
    overflow: hidden;
}

.hero-image-container {
    position: relative;
    width: 100%;
    height: 100%;
    background-color: #1a1a1a;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.6));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #ffffff;
    text-align: center;
    padding: 40px;
}

.hero-overlay h1 {
    font-size: 56px;
    font-weight: normal;
    margin-bottom: 20px;
    max-width: 800px;
    line-height: 1.2;
}

.hero-overlay p {
    font-size: 20px;
    max-width: 600px;
    line-height: 1.6;
}

.magazine-intro {
    padding: 80px 0;
    background-color: #ffffff;
}

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

.main-column {
    flex: 2;
}

.main-column h2 {
    font-size: 38px;
    margin-bottom: 30px;
    font-weight: normal;
    color: #1a1a1a;
}

.main-column p {
    font-size: 18px;
    margin-bottom: 25px;
    color: #444;
}

.sidebar-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-card {
    background-color: #f8f6f3;
    padding: 30px;
    border-left: 4px solid #8b6f47;
}

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

.info-card p {
    font-size: 16px;
    color: #555;
    margin-bottom: 15px;
}

.info-card img {
    width: 100%;
    height: auto;
}

.link-arrow {
    color: #8b6f47;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    transition: transform 0.3s ease;
}

.link-arrow:hover {
    transform: translateX(5px);
}

.featured-section {
    padding: 100px 0;
    background-color: #f5f5f5;
}

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

.feature-large {
    flex: 2;
    position: relative;
    background-color: #ffffff;
}

.feature-large img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.feature-content {
    padding: 40px;
}

.feature-content h3 {
    font-size: 32px;
    margin-bottom: 20px;
    font-weight: normal;
}

.feature-content p {
    font-size: 17px;
    color: #555;
}

.feature-small-stack {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.small-feature {
    background-color: #ffffff;
    padding: 35px;
    border-top: 3px solid #8b6f47;
}

.small-feature h4 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #2c2c2c;
}

.small-feature p {
    font-size: 16px;
    color: #666;
    margin-bottom: 15px;
}

.text-link {
    color: #8b6f47;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.text-link:hover {
    color: #a68456;
}

.experience-highlight {
    padding: 90px 0;
    background-color: #ffffff;
}

.split-content {
    display: flex;
    gap: 80px;
    align-items: center;
}

.text-side {
    flex: 1;
}

.text-side h2 {
    font-size: 42px;
    margin-bottom: 30px;
    font-weight: normal;
    color: #1a1a1a;
}

.text-side p {
    font-size: 18px;
    margin-bottom: 25px;
    color: #444;
}

.image-side {
    flex: 1;
    background-color: #f0f0f0;
}

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

.cta-button {
    display: inline-block;
    background-color: #8b6f47;
    color: #ffffff;
    padding: 15px 40px;
    text-decoration: none;
    font-size: 18px;
    border-radius: 4px;
    margin-top: 20px;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #a68456;
}

.service-preview {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.section-title {
    font-size: 40px;
    text-align: center;
    margin-bottom: 60px;
    font-weight: normal;
    color: #1a1a1a;
}

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

.service-card {
    flex: 1;
    min-width: 300px;
    background-color: #ffffff;
    overflow: hidden;
    border: 1px solid #e0e0e0;
}

.service-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.service-card h3 {
    font-size: 24px;
    margin: 25px 25px 15px 25px;
    color: #2c2c2c;
}

.service-card p {
    font-size: 16px;
    margin: 0 25px 20px 25px;
    color: #666;
}

.service-card .price {
    display: block;
    font-size: 22px;
    font-weight: bold;
    color: #8b6f47;
    margin: 0 25px 20px 25px;
}

.service-card .card-link {
    display: inline-block;
    margin: 0 25px 25px 25px;
    color: #8b6f47;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.service-card .card-link:hover {
    color: #a68456;
}

.testimonial-band {
    padding: 70px 0;
    background-color: #2c2c2c;
    color: #ffffff;
}

.testimonial-band blockquote {
    text-align: center;
    font-size: 24px;
    font-style: italic;
    line-height: 1.7;
}

.testimonial-band cite {
    display: block;
    margin-top: 25px;
    font-size: 18px;
    font-style: normal;
    color: #cccccc;
}

.booking-section {
    padding: 90px 0;
    background-color: #ffffff;
}

.booking-content h2 {
    font-size: 40px;
    margin-bottom: 20px;
    text-align: center;
    font-weight: normal;
}

.booking-content > p {
    text-align: center;
    font-size: 18px;
    color: #666;
    max-width: 700px;
    margin: 0 auto 50px auto;
}

.booking-form {
    max-width: 700px;
    margin: 0 auto;
}

.form-row {
    display: flex;
    gap: 30px;
}

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

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

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

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

.submit-button {
    width: 100%;
    padding: 15px;
    font-size: 18px;
    background-color: #8b6f47;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-button:hover {
    background-color: #a68456;
}

.main-footer {
    background-color: #1a1a1a;
    color: #cccccc;
    padding: 60px 0 30px 0;
}

.footer-columns {
    display: flex;
    gap: 60px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

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

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

.footer-col p {
    font-size: 15px;
    line-height: 1.7;
}

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

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

.footer-col ul li a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-disclaimer {
    border-top: 1px solid #333;
    padding-top: 30px;
    margin-bottom: 30px;
}

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

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

.footer-bottom p {
    font-size: 14px;
}

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

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

    .split-content {
        flex-direction: column;
        gap: 40px;
    }

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

    .nav-container {
        flex-direction: column;
        text-align: center;
    }

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
    }
}

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

    .hero-overlay p {
        font-size: 16px;
    }

    .form-row {
        flex-direction: column;
        gap: 0;
    }

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

.page-hero {
    position: relative;
    height: 500px;
    overflow: hidden;
}

.about-intro {
    padding: 90px 0;
    background-color: #ffffff;
}

.offset-layout {
    display: flex;
    gap: 70px;
    align-items: center;
}

.text-block {
    flex: 1.2;
}

.text-block h2 {
    font-size: 36px;
    margin-bottom: 30px;
    font-weight: normal;
    color: #1a1a1a;
}

.text-block p {
    font-size: 18px;
    margin-bottom: 25px;
    color: #444;
}

.image-block {
    flex: 1;
    background-color: #f0f0f0;
}

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

.philosophy-section {
    padding: 80px 0;
    background-color: #f8f6f3;
    text-align: center;
}

.philosophy-section h2 {
    font-size: 36px;
    margin-bottom: 30px;
    font-weight: normal;
}

.philosophy-section p {
    font-size: 18px;
    margin-bottom: 25px;
    color: #555;
}

.team-section {
    padding: 90px 0;
    background-color: #ffffff;
}

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

.team-member {
    flex: 1;
    background-color: #f9f9f9;
    padding: 40px;
    border-top: 4px solid #8b6f47;
}

.member-info h3 {
    font-size: 26px;
    margin-bottom: 20px;
    color: #2c2c2c;
}

.member-info p {
    font-size: 17px;
    color: #666;
    line-height: 1.8;
}

.values-section {
    padding: 90px 0;
    background-color: #2c2c2c;
    color: #ffffff;
}

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

.value-item {
    flex: 1;
    min-width: 250px;
    padding: 35px;
    background-color: rgba(255, 255, 255, 0.05);
}

.value-item h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #ffffff;
}

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

.journey-section {
    padding: 90px 0;
    background-color: #ffffff;
}

.cta-section {
    padding: 80px 0;
    background-color: #f8f6f3;
    text-align: center;
}

.cta-section h2 {
    font-size: 36px;
    margin-bottom: 20px;
    font-weight: normal;
}

.cta-section p {
    font-size: 18px;
    color: #666;
    margin-bottom: 30px;
}

.services-intro {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.intro-text {
    font-size: 20px;
    text-align: center;
    color: #555;
    line-height: 1.8;
}

.service-detail {
    padding: 70px 0;
    background-color: #ffffff;
}

.service-detail.alt {
    background-color: #fafafa;
}

.detail-layout {
    display: flex;
    gap: 70px;
    align-items: center;
}

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

.detail-image {
    flex: 1;
    background-color: #f0f0f0;
}

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

.detail-content {
    flex: 1;
}

.detail-content h2 {
    font-size: 34px;
    margin-bottom: 15px;
    font-weight: normal;
    color: #1a1a1a;
}

.price-tag {
    font-size: 28px;
    font-weight: bold;
    color: #8b6f47;
    margin-bottom: 25px;
    display: block;
}

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

.feature-list {
    list-style: none;
    margin-top: 30px;
}

.feature-list li {
    font-size: 16px;
    color: #666;
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
}

.feature-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #8b6f47;
    font-size: 20px;
}

.contact-page {
    padding: 80px 0;
    background-color: #ffffff;
}

.contact-grid {
    display: flex;
    gap: 70px;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 36px;
    margin-bottom: 30px;
    font-weight: normal;
}

.info-block {
    margin-bottom: 40px;
}

.info-block h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #2c2c2c;
}

.info-block p {
    font-size: 17px;
    color: #666;
    line-height: 1.7;
}

.contact-form-section {
    flex: 1;
    background-color: #f9f9f9;
    padding: 50px;
}

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

.thanks-page {
    padding: 120px 0;
    text-align: center;
    background-color: #ffffff;
}

.thanks-content h1 {
    font-size: 48px;
    margin-bottom: 25px;
    font-weight: normal;
    color: #1a1a1a;
}

.thanks-content p {
    font-size: 20px;
    color: #666;
    margin-bottom: 20px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.thanks-content .cta-button {
    margin-top: 30px;
}

.legal-page {
    padding: 80px 0;
    background-color: #ffffff;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
}

.legal-content h1 {
    font-size: 42px;
    margin-bottom: 20px;
    font-weight: normal;
}

.legal-content h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 20px;
    font-weight: normal;
    color: #2c2c2c;
}

.legal-content h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: normal;
    color: #444;
}

.legal-content p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #555;
    line-height: 1.8;
}

.legal-content ul {
    margin: 20px 0 20px 40px;
}

.legal-content ul li {
    font-size: 17px;
    color: #555;
    margin-bottom: 12px;
    line-height: 1.7;
}

.last-updated {
    font-style: italic;
    color: #888;
    margin-bottom: 40px;
}

@media (max-width: 1024px) {
    .offset-layout {
        flex-direction: column;
    }

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

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

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

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