/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

h1, h2, h3, h4 {
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
    font-weight: 600;
    line-height: 1.3;
    color: #1a1a1a;
}

h1 {
    font-size: 3.2rem;
    margin-bottom: 1rem;
}

h2 {
    font-size: 2.4rem;
    margin-bottom: 1.5rem;
}

h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
}

a {
    color: #8b6f47;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #6b5437;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 1.5rem;
    z-index: 10000;
    display: none;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
}

.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: 1rem;
}

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

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

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.btn-primary, .btn-secondary, .btn-submit, .btn-select-service {
    padding: 0.75rem 1.8rem;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 4px;
    transition: all 0.3s ease;
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
}

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

.btn-primary:hover {
    background-color: #6b5437;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

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

/* Header and Navigation */
.main-header {
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    padding: 1rem 0;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-links a {
    color: #2c2c2c;
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.ad-notice {
    font-size: 0.8rem;
    color: #666;
    padding: 0.4rem 0.8rem;
    background-color: #f0f0f0;
    border-radius: 3px;
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: #1a1a1a;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero-editorial {
    position: relative;
    height: 85vh;
    min-height: 600px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #3d3d3d;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.85;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.6));
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    max-width: 900px;
    padding: 0 2rem;
    text-align: center;
    color: #ffffff;
}

.hero-content h1 {
    color: #ffffff;
    font-size: 3.8rem;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.4rem;
    line-height: 1.6;
    color: #f0f0f0;
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
    font-weight: 300;
}

/* Magazine Layout Containers */
.container-magazine {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

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

.container-split {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Intro Magazine Section */
.intro-magazine {
    padding: 5rem 0;
    background-color: #ffffff;
}

.intro-magazine .container-magazine {
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

.intro-left {
    flex: 2;
}

.intro-left h2 {
    font-size: 2.6rem;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

.intro-left p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.intro-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.stat-card {
    background-color: #f8f5f2;
    padding: 2rem;
    border-left: 4px solid #8b6f47;
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: #8b6f47;
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.95rem;
    color: #4a4a4a;
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
}

/* Services Showcase */
.services-showcase {
    padding: 6rem 0;
    background-color: #fafafa;
}

.section-header-magazine {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header-magazine h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.section-header-magazine p {
    font-size: 1.2rem;
    color: #666;
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
}

.services-grid-magazine {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.service-card {
    background-color: #ffffff;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.service-card.large {
    flex-basis: calc(100% - 0rem);
}

.service-card:not(.large) {
    flex-basis: calc(50% - 1rem);
}

.service-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
    background-color: #e0e0e0;
}

.service-card.large .service-image {
    height: 400px;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.05);
}

.service-content {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-content h3 {
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.service-content p {
    margin-bottom: 1.5rem;
    flex: 1;
}

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

.service-duration {
    font-size: 0.9rem;
    color: #666;
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
}

.service-price {
    font-size: 1.4rem;
    font-weight: 700;
    color: #8b6f47;
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
}

.btn-select-service {
    background-color: #8b6f47;
    color: #ffffff;
    align-self: flex-start;
}

.btn-select-service:hover {
    background-color: #6b5437;
    transform: translateY(-2px);
}

/* Form Section */
.form-section {
    padding: 5rem 0;
    background-color: #ffffff;
}

.form-header {
    text-align: center;
    margin-bottom: 3rem;
}

.form-header h2 {
    margin-bottom: 1rem;
}

.form-header p {
    font-size: 1.1rem;
    color: #666;
}

.contact-form {
    background-color: #f8f5f2;
    padding: 3rem;
    border-radius: 8px;
}

.form-group {
    margin-bottom: 1.8rem;
}

.form-row {
    display: flex;
    gap: 2rem;
}

.form-row .form-group {
    flex: 1;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #2c2c2c;
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 1px solid #d0d0d0;
    border-radius: 4px;
    font-size: 1rem;
    font-family: 'Georgia', 'Times New Roman', serif;
    transition: border-color 0.3s ease;
}

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

.form-group textarea {
    resize: vertical;
}

.form-footer {
    margin-top: 2rem;
}

.form-disclaimer {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 1.5rem;
}

.form-disclaimer a {
    text-decoration: underline;
}

.btn-submit {
    background-color: #8b6f47;
    color: #ffffff;
    width: 100%;
    padding: 1rem;
    font-size: 1.1rem;
}

.btn-submit:hover {
    background-color: #6b5437;
    transform: translateY(-2px);
}

/* Trust Section */
.trust-section {
    padding: 5rem 0;
    background-color: #f8f5f2;
}

.trust-section h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.8rem;
}

.testimonials-magazine {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.testimonial {
    background-color: #ffffff;
    padding: 2.5rem;
    border-left: 4px solid #8b6f47;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
}

.testimonial p {
    font-size: 1.15rem;
    font-style: italic;
    margin-bottom: 1.5rem;
    color: #2c2c2c;
    line-height: 1.8;
}

.testimonial cite {
    display: block;
    font-style: normal;
    font-size: 0.95rem;
    color: #666;
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
    font-weight: 500;
}

/* Philosophy Section */
.philosophy-section {
    padding: 6rem 0;
    background-color: #ffffff;
}

.philosophy-section .container-split {
    display: flex;
    gap: 4rem;
    align-items: center;
}

.philosophy-image {
    flex: 1;
    background-color: #e0e0e0;
}

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

.philosophy-content {
    flex: 1;
}

.philosophy-content h2 {
    margin-bottom: 1.5rem;
}

.philosophy-content p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

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

.philosophy-list li {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.7;
}

.philosophy-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #8b6f47;
    font-weight: 700;
}

.philosophy-list strong {
    color: #1a1a1a;
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
}

/* Disclaimer Section */
.disclaimer-section {
    padding: 4rem 0;
    background-color: #fafafa;
}

.disclaimer-box {
    background-color: #fff9f0;
    border: 1px solid #e0d4c0;
    padding: 2rem;
    border-radius: 6px;
}

.disclaimer-box h3 {
    color: #8b6f47;
    margin-bottom: 1rem;
}

.disclaimer-box p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #4a4a4a;
}

/* Footer */
.main-footer {
    background-color: #1a1a1a;
    color: #d0d0d0;
    padding: 4rem 0 2rem;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    gap: 3rem;
    flex-wrap: wrap;
}

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

.footer-column h4 {
    color: #ffffff;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
}

.footer-column p {
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 0.8rem;
}

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

.footer-column ul li {
    margin-bottom: 0.8rem;
}

.footer-column a {
    color: #d0d0d0;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: #d4af87;
}

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

.footer-bottom p {
    font-size: 0.9rem;
    color: #888;
}

/* Thanks Page */
.thanks-hero {
    padding: 6rem 0;
    background-color: #f8f5f2;
    text-align: center;
}

.thanks-hero h1 {
    color: #8b6f47;
    margin-bottom: 1.5rem;
}

.thanks-content {
    padding: 4rem 0;
    background-color: #ffffff;
}

.thanks-box {
    background-color: #f8f5f2;
    padding: 3rem;
    border-radius: 8px;
    text-align: center;
}

.thanks-box h2 {
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.thanks-box p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.selected-service {
    display: inline-block;
    background-color: #8b6f47;
    color: #ffffff;
    padding: 0.8rem 1.5rem;
    border-radius: 4px;
    margin: 1.5rem 0;
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
    font-weight: 500;
}

.btn-home {
    display: inline-block;
    margin-top: 2rem;
    padding: 0.9rem 2rem;
    background-color: #8b6f47;
    color: #ffffff;
    border-radius: 4px;
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-home:hover {
    background-color: #6b5437;
    transform: translateY(-2px);
}

/* Legal Pages */
.legal-page {
    padding: 5rem 0;
    background-color: #ffffff;
}

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

.legal-content h1 {
    margin-bottom: 2rem;
    color: #1a1a1a;
}

.legal-content h2 {
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.legal-content h3 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.legal-content p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.legal-content ul {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.legal-content ul li {
    margin-bottom: 0.8rem;
    line-height: 1.7;
}

.legal-content a {
    text-decoration: underline;
}

/* Contact Page */
.contact-page {
    padding: 5rem 0;
    background-color: #fafafa;
}

.contact-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    gap: 4rem;
}

.contact-info {
    flex: 1;
    background-color: #ffffff;
    padding: 3rem;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
}

.contact-info h1 {
    margin-bottom: 2rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #e0e0e0;
}

.contact-item:last-child {
    border-bottom: none;
}

.contact-item h3 {
    margin-bottom: 0.8rem;
    color: #8b6f47;
}

.contact-item p {
    line-height: 1.7;
    color: #4a4a4a;
}

.contact-map {
    flex: 1;
    background-color: #e0e0e0;
    min-height: 500px;
}

/* About Page */
.about-hero {
    padding: 5rem 0;
    background-color: #f8f5f2;
    text-align: center;
}

.about-hero h1 {
    margin-bottom: 1.5rem;
}

.about-content {
    padding: 5rem 0;
    background-color: #ffffff;
}

.about-section {
    max-width: 1100px;
    margin: 0 auto 5rem;
    padding: 0 2rem;
}

.about-split {
    display: flex;
    gap: 4rem;
    align-items: center;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    margin-bottom: 1.5rem;
}

.about-text p {
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.about-image {
    flex: 1;
    background-color: #e0e0e0;
}

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

.team-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 3rem;
}

.team-member {
    flex: 1;
    min-width: 280px;
    background-color: #f8f5f2;
    padding: 2rem;
    text-align: center;
}

.team-member h3 {
    margin-bottom: 0.5rem;
}

.team-member .role {
    color: #8b6f47;
    font-style: italic;
    margin-bottom: 1rem;
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
}

.team-member p {
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Services Page */
.services-page-hero {
    padding: 5rem 0;
    background-color: #1a1a1a;
    color: #ffffff;
    text-align: center;
}

.services-page-hero h1 {
    color: #ffffff;
    margin-bottom: 1.5rem;
}

.services-list {
    padding: 5rem 0;
    background-color: #ffffff;
}

.service-detail {
    max-width: 1100px;
    margin: 0 auto 4rem;
    padding: 0 2rem;
}

.service-detail-content {
    background-color: #f8f5f2;
    padding: 3rem;
    border-left: 4px solid #8b6f47;
}

.service-detail-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.service-detail-header h2 {
    margin: 0;
}

.service-detail-price {
    font-size: 2rem;
    font-weight: 700;
    color: #8b6f47;
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
}

.service-detail-content p {
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.service-detail-content ul {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.service-detail-content ul li {
    margin-bottom: 0.8rem;
    line-height: 1.7;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .intro-magazine .container-magazine {
        flex-direction: column;
    }

    .intro-right {
        flex-direction: row;
    }

    .service-card:not(.large) {
        flex-basis: 100%;
    }

    .philosophy-section .container-split {
        flex-direction: column;
    }

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

    .about-split {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.4rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    .nav-links {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-content h1 {
        font-size: 2.6rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

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

    .contact-form {
        padding: 2rem;
    }

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

    .intro-right {
        flex-direction: column;
    }

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

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

    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2rem;
    }

    .hero-editorial {
        height: 70vh;
    }

    .services-showcase {
        padding: 4rem 0;
    }

    .trust-section {
        padding: 4rem 0;
    }

    .testimonial {
        padding: 1.5rem;
    }
}