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

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

h1 {
    font-size: 2.8rem;
    margin-bottom: 1.2rem;
}

h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    margin-top: 2.5rem;
}

h3 {
    font-size: 1.6rem;
    margin-bottom: 0.8rem;
    margin-top: 1.5rem;
}

h4 {
    font-size: 1.3rem;
    margin-bottom: 0.6rem;
}

p {
    margin-bottom: 1.2rem;
}

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

a:hover {
    color: #d2691e;
}

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

ul {
    margin: 1rem 0;
    padding-left: 2rem;
}

li {
    margin-bottom: 0.5rem;
}

.site-header {
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

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

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #8b4513;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.main-nav {
    display: flex;
    gap: 2rem;
    align-items: center;
    flex-wrap: wrap;
}

.main-nav a {
    color: #333;
    font-size: 1rem;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    transition: color 0.3s ease;
}

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

.ad-notice {
    font-size: 0.75rem;
    color: #888;
    padding: 0.3rem 0.8rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: #333;
}

.hero-magazine {
    position: relative;
    margin-bottom: 4rem;
}

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

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

.hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    padding: 3rem 2rem;
    color: #ffffff;
}

.hero-overlay h1 {
    color: #ffffff;
    max-width: 800px;
    font-size: 3.5rem;
}

.hero-overlay p {
    font-size: 1.3rem;
    max-width: 700px;
    color: #f0f0f0;
}

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

.column-main {
    flex: 2;
    max-width: 900px;
}

.column-sidebar {
    flex: 1;
    min-width: 300px;
}

.column-text {
    flex: 1;
    padding: 2rem;
}

.column-image {
    flex: 1;
}

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

.card-highlight {
    background-color: #fff;
    padding: 2rem;
    border-left: 4px solid #8b4513;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    margin-bottom: 2rem;
}

.card-highlight h3 {
    margin-top: 0;
    color: #8b4513;
}

.card-highlight img {
    margin-bottom: 1rem;
    border-radius: 4px;
}

.intro-editorial {
    background-color: #ffffff;
    padding: 4rem 0;
}

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

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

.section-title {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

.section-intro {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto 3rem;
}

.services-grid-magazine {
    background-color: #f5f5f5;
    padding: 5rem 0;
}

.services-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    justify-content: center;
}

.service-card {
    background-color: #ffffff;
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 300px;
    max-width: 420px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

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

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

.service-card h3 {
    padding: 1.5rem 1.5rem 0.5rem;
    margin: 0;
    color: #8b4513;
}

.service-card p {
    padding: 0 1.5rem;
    flex-grow: 1;
}

.service-card .price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #8b4513;
    padding: 0 1.5rem;
    margin: 1rem 0 0.5rem;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.btn-select {
    margin: 1.5rem;
    padding: 1rem 2rem;
    background-color: #8b4513;
    color: #ffffff;
    border: none;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.btn-select:hover {
    background-color: #a0522d;
    transform: scale(1.02);
}

.philosophy-split {
    background-color: #ffffff;
    padding: 5rem 0;
}

.testimonials-magazine {
    background-color: #faf8f5;
    padding: 5rem 0;
}

.testimonial-block {
    background-color: #ffffff;
    padding: 2.5rem;
    margin-bottom: 2rem;
    border-left: 5px solid #d2691e;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.testimonial-text {
    font-size: 1.15rem;
    font-style: italic;
    line-height: 1.8;
    color: #444;
    margin-bottom: 1rem;
}

.testimonial-author {
    font-weight: 600;
    color: #8b4513;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.form-section {
    background-color: #8b4513;
    padding: 5rem 0;
    color: #ffffff;
}

.form-section h2 {
    color: #ffffff;
    text-align: center;
}

.form-section > p {
    text-align: center;
    color: #f0e6dc;
    margin-bottom: 3rem;
}

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

.contact-form {
    background-color: #ffffff;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

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

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

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

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

.btn-submit {
    width: 100%;
    padding: 1rem;
    background-color: #8b4513;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

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

.site-footer {
    background-color: #2c2c2c;
    color: #cccccc;
    padding: 4rem 0 1rem;
}

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

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

.footer-column h4 {
    color: #ffffff;
    margin-bottom: 1rem;
}

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

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

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

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

.footer-disclaimer {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
    border-top: 1px solid #444;
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-bottom {
    text-align: center;
    padding: 2rem;
    border-top: 1px solid #444;
    font-size: 0.9rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0,0,0,0.95);
    color: #ffffff;
    padding: 1.5rem;
    z-index: 10000;
    display: none;
}

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

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

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

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

.cookie-accept,
.cookie-reject {
    padding: 0.7rem 1.5rem;
    border: none;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.3s ease;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

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

.cookie-accept:hover {
    background-color: #a0522d;
}

.cookie-reject {
    background-color: #555;
    color: #ffffff;
}

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

.page-hero {
    background: linear-gradient(135deg, #8b4513 0%, #d2691e 100%);
    padding: 5rem 2rem;
    text-align: center;
    color: #ffffff;
}

.hero-content h1 {
    color: #ffffff;
    margin-bottom: 1rem;
}

.hero-content p {
    font-size: 1.3rem;
    color: #f0e6dc;
}

.about-story {
    background-color: #ffffff;
    padding: 4rem 0;
}

.values-list {
    list-style: none;
    padding: 0;
}

.values-list li {
    margin-bottom: 1.2rem;
    padding-left: 1rem;
    border-left: 3px solid #d2691e;
}

.team-section {
    background-color: #f9f9f9;
    padding: 5rem 0;
}

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

.team-member {
    flex: 1 1 calc(50% - 1.5rem);
    min-width: 300px;
    background-color: #ffffff;
    padding: 2rem;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.member-role {
    color: #8b4513;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.philosophy-deep {
    background-color: #faf8f5;
    padding: 5rem 0;
}

.cta-section {
    background: linear-gradient(135deg, #8b4513 0%, #d2691e 100%);
    padding: 5rem 2rem;
    text-align: center;
}

.cta-content h2 {
    color: #ffffff;
    margin-bottom: 1rem;
}

.cta-content p {
    color: #f0e6dc;
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.btn-cta {
    display: inline-block;
    padding: 1.2rem 3rem;
    background-color: #ffffff;
    color: #8b4513;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 4px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

.services-detailed {
    padding: 3rem 0;
}

.service-detail {
    margin-bottom: 5rem;
}

.service-layout-left,
.service-layout-right {
    display: flex;
    gap: 3rem;
    align-items: flex-start;
}

.service-layout-right {
    flex-direction: row-reverse;
}

.service-image {
    flex: 1;
    min-width: 300px;
}

.service-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
    background-color: #e8d5c4;
}

.service-content {
    flex: 1;
}

.service-price {
    font-size: 2rem;
    font-weight: 700;
    color: #8b4513;
    margin: 0.5rem 0 1.5rem;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.contact-info-section {
    background-color: #ffffff;
    padding: 4rem 0;
}

.contact-details {
    margin: 3rem 0;
}

.contact-item {
    margin-bottom: 2.5rem;
}

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

.contact-item .note {
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
}

.thanks-page {
    background-color: #f9f9f9;
    padding: 5rem 2rem;
    min-height: 60vh;
}

.thanks-container {
    max-width: 800px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 4rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    border-radius: 8px;
}

.thanks-icon {
    font-size: 5rem;
    color: #8b4513;
    margin-bottom: 1.5rem;
}

.thanks-intro {
    font-size: 1.3rem;
    color: #666;
    margin-bottom: 2rem;
}

.thanks-details {
    text-align: left;
    margin: 3rem 0;
}

.service-confirmation {
    background-color: #faf8f5;
    padding: 1.5rem;
    border-radius: 4px;
    margin: 2rem 0;
}

.service-selected {
    color: #333;
}

.next-steps {
    margin: 2rem 0;
    padding-left: 2rem;
}

.next-steps li {
    margin-bottom: 1.2rem;
}

.thanks-note {
    background-color: #fffbf0;
    padding: 1rem;
    border-left: 4px solid #d2691e;
    margin: 2rem 0;
}

.thanks-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
    padding: 1rem 2.5rem;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

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

.btn-primary:hover {
    background-color: #a0522d;
}

.btn-secondary {
    background-color: #f0f0f0;
    color: #333;
}

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

.legal-page {
    background-color: #ffffff;
    padding: 4rem 0;
}

.update-date {
    color: #888;
    font-style: italic;
    margin-bottom: 3rem;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
}

.cookie-table thead {
    background-color: #f5f5f5;
}

.cookie-table th,
.cookie-table td {
    padding: 1rem;
    text-align: left;
    border: 1px solid #ddd;
}

.cookie-table th {
    font-weight: 700;
    color: #333;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

@media (max-width: 1024px) {
    .container-magazine {
        flex-direction: column;
        gap: 2rem;
    }

    .service-layout-left,
    .service-layout-right {
        flex-direction: column;
    }

    .team-member {
        flex: 1 1 100%;
    }
}

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

    h2 {
        font-size: 1.7rem;
    }

    .hero-overlay h1 {
        font-size: 2.2rem;
    }

    .main-nav {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .main-nav.active {
        display: flex;
        flex-direction: column;
        width: 100%;
        margin-top: 1rem;
    }

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

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

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

    .thanks-container {
        padding: 2rem;
    }
}