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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #ffffff;
}

.ad-notice {
    background-color: #f8f9fa;
    padding: 8px 20px;
    text-align: center;
    font-size: 12px;
    color: #6c757d;
    border-bottom: 1px solid #dee2e6;
}

.header-magazine {
    background-color: #ffffff;
    border-bottom: 2px solid #2c3e50;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-top {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.nav-main {
    display: flex;
    gap: 35px;
}

.nav-main a {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s ease;
}

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

.hero-magazine {
    background-color: #f8f7f5;
    padding: 80px 20px;
}

.hero-content-split {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
}

.hero-text-column {
    flex: 1;
}

.hero-text-column h1 {
    font-size: 52px;
    line-height: 1.2;
    margin-bottom: 25px;
    color: #2c3e50;
    font-weight: 700;
}

.hero-lead {
    font-size: 20px;
    line-height: 1.7;
    color: #5a6c7d;
    margin-bottom: 35px;
}

.hero-image-column {
    flex: 1;
}

.hero-image-column img {
    width: 100%;
    height: auto;
    border-radius: 3px;
}

.cta-primary {
    display: inline-block;
    background-color: #8b7355;
    color: #ffffff;
    padding: 16px 40px;
    text-decoration: none;
    border-radius: 3px;
    font-weight: 600;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

.cta-primary:hover {
    background-color: #6d5a43;
}

.intro-magazine {
    padding: 70px 20px;
    background-color: #ffffff;
}

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

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

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

.intro-magazine h2 {
    font-size: 38px;
    margin-bottom: 25px;
    color: #2c3e50;
    line-height: 1.3;
}

.intro-magazine p {
    font-size: 18px;
    line-height: 1.8;
    color: #5a6c7d;
    margin-bottom: 20px;
}

.services-magazine {
    padding: 80px 20px;
    background-color: #fafafa;
}

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

.section-header-magazine h2 {
    font-size: 42px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.section-subtitle {
    font-size: 18px;
    color: #6c757d;
}

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

.service-card-magazine {
    background: #ffffff;
    border-radius: 4px;
    overflow: hidden;
    flex: 1 1 calc(50% - 20px);
    min-width: 320px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: box-shadow 0.3s ease;
}

.service-card-magazine:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}

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

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

.service-content {
    padding: 30px;
}

.service-content h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #2c3e50;
}

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

.price-tag {
    display: block;
    font-size: 22px;
    font-weight: 700;
    color: #8b7355;
    margin-bottom: 20px;
}

.btn-select-service {
    background-color: #2c3e50;
    color: #ffffff;
    border: none;
    padding: 12px 30px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 3px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-select-service:hover {
    background-color: #1a252f;
}

.testimonials-inline {
    padding: 70px 20px;
    background-color: #f1ede8;
}

.testimonial-large {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.testimonial-large p {
    font-size: 26px;
    line-height: 1.6;
    color: #2c3e50;
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-large cite {
    font-size: 16px;
    color: #6c757d;
    font-style: normal;
}

.approach-section {
    padding: 80px 20px;
    background-color: #ffffff;
}

.container-asymmetric {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 50px;
    align-items: center;
}

.approach-left {
    flex: 0.9;
}

.approach-left img {
    width: 100%;
    height: auto;
    border-radius: 3px;
}

.approach-right {
    flex: 1.1;
}

.approach-right h2 {
    font-size: 38px;
    margin-bottom: 25px;
    color: #2c3e50;
}

.approach-right p {
    font-size: 17px;
    line-height: 1.8;
    color: #5a6c7d;
    margin-bottom: 20px;
}

.form-section {
    padding: 80px 20px;
    background-color: #f8f7f5;
}

.form-section h2 {
    font-size: 38px;
    margin-bottom: 15px;
    color: #2c3e50;
    text-align: center;
}

.form-intro {
    text-align: center;
    font-size: 18px;
    color: #6c757d;
    margin-bottom: 50px;
}

.contact-form-magazine {
    max-width: 600px;
    margin: 0 auto;
}

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

.form-group label {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    font-size: 16px;
    border: 1px solid #ced4da;
    border-radius: 3px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.btn-submit {
    background-color: #8b7355;
    color: #ffffff;
    border: none;
    padding: 16px 50px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 3px;
    cursor: pointer;
    width: 100%;
    transition: background-color 0.3s ease;
}

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

.trust-indicators {
    padding: 60px 20px;
    background-color: #2c3e50;
}

.trust-grid {
    display: flex;
    gap: 40px;
    justify-content: space-around;
}

.trust-item {
    text-align: center;
    color: #ffffff;
}

.trust-item h3 {
    font-size: 32px;
    margin-bottom: 8px;
    color: #d4a574;
}

.trust-item p {
    font-size: 16px;
    color: #e9ecef;
}

.footer-magazine {
    background-color: #1a252f;
    color: #e9ecef;
    padding: 60px 20px 20px;
}

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

.footer-column {
    flex: 1;
}

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

.footer-column p,
.footer-column a {
    font-size: 14px;
    line-height: 1.8;
    color: #b8c1cc;
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
}

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

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 0;
    border-top: 1px solid #2c3e50;
    border-bottom: 1px solid #2c3e50;
}

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

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 25px;
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: #8b95a1;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 25px 20px;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.2);
    z-index: 1000;
    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: 30px;
}

.cookie-content p {
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}

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

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 10px 25px;
    border: none;
    border-radius: 3px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.btn-cookie-accept:hover {
    background-color: #6d5a43;
}

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

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

.page-hero-about,
.page-hero-services,
.page-hero-contact {
    background-color: #f8f7f5;
    padding: 70px 20px;
    text-align: center;
}

.page-hero-about h1,
.page-hero-services h1,
.page-hero-contact h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.page-intro {
    font-size: 20px;
    line-height: 1.7;
    color: #5a6c7d;
}

.about-story {
    padding: 80px 20px;
    background-color: #ffffff;
}

.story-text {
    flex: 1.2;
}

.story-text h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #2c3e50;
}

.story-text p {
    font-size: 17px;
    line-height: 1.8;
    color: #5a6c7d;
    margin-bottom: 20px;
}

.story-image {
    flex: 0.8;
}

.story-image img {
    width: 100%;
    height: auto;
    border-radius: 3px;
}

.values-section {
    padding: 80px 20px;
    background-color: #fafafa;
}

.values-section h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 60px;
    color: #2c3e50;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 35px;
}

.value-card {
    flex: 1 1 calc(50% - 18px);
    min-width: 280px;
    background-color: #ffffff;
    padding: 35px;
    border-left: 4px solid #8b7355;
}

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

.value-card p {
    font-size: 16px;
    line-height: 1.7;
    color: #5a6c7d;
}

.team-section {
    padding: 80px 20px;
    background-color: #ffffff;
}

.team-section h2 {
    font-size: 38px;
    margin-bottom: 20px;
    color: #2c3e50;
    text-align: center;
}

.section-intro {
    text-align: center;
    font-size: 18px;
    color: #6c757d;
    margin-bottom: 50px;
}

.team-layout {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.team-member {
    padding: 30px;
    background-color: #f8f7f5;
    border-radius: 4px;
}

.team-member h3 {
    font-size: 24px;
    margin-bottom: 8px;
    color: #2c3e50;
}

.role {
    font-size: 16px;
    color: #8b7355;
    font-weight: 600;
    margin-bottom: 15px;
    display: block;
}

.team-member p {
    font-size: 16px;
    line-height: 1.7;
    color: #5a6c7d;
}

.approach-detail {
    padding: 80px 20px;
    background-color: #fafafa;
}

.approach-detail h2 {
    font-size: 38px;
    margin-bottom: 25px;
    color: #2c3e50;
    text-align: center;
}

.approach-detail > p {
    font-size: 18px;
    line-height: 1.8;
    color: #5a6c7d;
    text-align: center;
    margin-bottom: 50px;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.process-step {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 4px;
}

.process-step h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.process-step p {
    font-size: 16px;
    line-height: 1.7;
    color: #5a6c7d;
}

.cta-about {
    padding: 80px 20px;
    background-color: #2c3e50;
    text-align: center;
}

.cta-about h2 {
    font-size: 36px;
    color: #ffffff;
    margin-bottom: 20px;
}

.cta-about p {
    font-size: 18px;
    color: #e9ecef;
    margin-bottom: 35px;
}

.btn-cta-large {
    display: inline-block;
    background-color: #8b7355;
    color: #ffffff;
    padding: 18px 50px;
    text-decoration: none;
    border-radius: 3px;
    font-weight: 600;
    font-size: 17px;
    transition: background-color 0.3s ease;
}

.btn-cta-large:hover {
    background-color: #6d5a43;
}

.services-detailed {
    padding: 60px 20px;
    background-color: #ffffff;
}

.service-detail-card {
    max-width: 1200px;
    margin: 0 auto 80px auto;
    display: flex;
    gap: 50px;
    align-items: flex-start;
}

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

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

.service-detail-image img {
    width: 100%;
    height: auto;
    border-radius: 4px;
}

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

.service-detail-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.service-description {
    font-size: 17px;
    line-height: 1.8;
    color: #5a6c7d;
    margin-bottom: 30px;
}

.service-detail-content h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.service-features {
    list-style: none;
    margin-bottom: 30px;
}

.service-features li {
    font-size: 16px;
    line-height: 1.8;
    color: #5a6c7d;
    padding-left: 25px;
    position: relative;
    margin-bottom: 8px;
}

.service-features li:before {
    content: "•";
    position: absolute;
    left: 8px;
    color: #8b7355;
    font-weight: bold;
}

.pricing-detail {
    background-color: #f8f7f5;
    padding: 25px;
    border-radius: 4px;
    margin-bottom: 25px;
}

.price-amount {
    display: block;
    font-size: 28px;
    font-weight: 700;
    color: #8b7355;
    margin-bottom: 10px;
}

.price-note {
    font-size: 14px;
    color: #6c757d;
    line-height: 1.6;
}

.services-cta {
    padding: 70px 20px;
    background-color: #f8f7f5;
    text-align: center;
}

.services-cta h2 {
    font-size: 34px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.services-cta p {
    font-size: 18px;
    color: #5a6c7d;
    margin-bottom: 35px;
}

.contact-content {
    padding: 70px 20px;
    background-color: #ffffff;
}

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

.contact-info-block {
    flex: 1;
}

.contact-info-block h2 {
    font-size: 34px;
    margin-bottom: 40px;
    color: #2c3e50;
}

.contact-item {
    margin-bottom: 35px;
}

.contact-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.contact-item p {
    font-size: 16px;
    line-height: 1.8;
    color: #5a6c7d;
}

.hours-note {
    font-size: 14px;
    color: #8b7355;
    margin-top: 10px;
}

.contact-map-placeholder {
    flex: 1;
}

.map-area {
    background-color: #f8f7f5;
    padding: 50px 30px;
    border-radius: 4px;
    text-align: center;
}

.map-label {
    font-size: 20px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 15px;
}

.map-area p {
    font-size: 16px;
    line-height: 1.7;
    color: #5a6c7d;
}

.visit-info,
.regional-work {
    padding: 70px 20px;
    background-color: #fafafa;
}

.visit-info h2,
.regional-work h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.visit-info p,
.regional-work p {
    font-size: 17px;
    line-height: 1.8;
    color: #5a6c7d;
    margin-bottom: 20px;
}

.visit-info h3 {
    font-size: 24px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.travel-info {
    list-style: none;
}

.travel-info li {
    font-size: 16px;
    line-height: 1.8;
    color: #5a6c7d;
    margin-bottom: 15px;
}

.travel-info strong {
    color: #2c3e50;
}

.thanks-hero {
    padding: 100px 20px;
    background-color: #f8f7f5;
}

.thanks-content h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #2c3e50;
    text-align: center;
}

.thanks-message {
    font-size: 20px;
    color: #5a6c7d;
    text-align: center;
    margin-bottom: 50px;
}

.confirmation-details {
    background-color: #ffffff;
    padding: 35px;
    border-radius: 4px;
    margin-bottom: 40px;
}

.confirmation-details p {
    font-size: 17px;
    line-height: 1.8;
    color: #5a6c7d;
}

.next-steps {
    margin-bottom: 40px;
}

.next-steps h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #2c3e50;
}

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

.steps-list li {
    font-size: 16px;
    line-height: 1.8;
    color: #5a6c7d;
    padding-left: 30px;
    position: relative;
    margin-bottom: 15px;
}

.steps-list li:before {
    content: "✓";
    position: absolute;
    left: 5px;
    color: #8b7355;
    font-weight: bold;
}

.meanwhile {
    background-color: #ffffff;
    padding: 35px;
    border-radius: 4px;
    margin-bottom: 40px;
}

.meanwhile h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.meanwhile p {
    font-size: 17px;
    color: #5a6c7d;
    margin-bottom: 25px;
}

.resource-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.resource-link {
    display: inline-block;
    background-color: #f8f7f5;
    padding: 15px 25px;
    text-decoration: none;
    color: #2c3e50;
    border-radius: 3px;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.resource-link:hover {
    background-color: #e9e5e1;
}

.contact-reminder {
    background-color: #fff8e1;
    padding: 25px;
    border-left: 4px solid #8b7355;
    border-radius: 3px;
}

.contact-reminder p {
    font-size: 16px;
    line-height: 1.7;
    color: #5a6c7d;
    margin-bottom: 8px;
}

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

.legal-page h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.legal-intro {
    font-size: 18px;
    line-height: 1.8;
    color: #5a6c7d;
    margin-bottom: 20px;
}

.effective-date {
    font-size: 15px;
    color: #8b7355;
    margin-bottom: 40px;
}

.legal-page h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.legal-page h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.legal-page p {
    font-size: 16px;
    line-height: 1.8;
    color: #5a6c7d;
    margin-bottom: 20px;
}

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

.legal-page li {
    font-size: 16px;
    line-height: 1.8;
    color: #5a6c7d;
    margin-bottom: 10px;
}

.legal-page a {
    color: #8b7355;
    text-decoration: underline;
}

.legal-page a:hover {
    color: #6d5a43;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
}

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

.cookie-table th {
    background-color: #f8f7f5;
    font-weight: 600;
    color: #2c3e50;
}

.cookie-table td {
    font-size: 15px;
    color: #5a6c7d;
}

@media (max-width: 768px) {
    .hero-content-split,
    .container-asymmetric,
    .contact-layout,
    .service-detail-card {
        flex-direction: column;
    }

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

    .hero-text-column h1 {
        font-size: 38px;
    }

    .trust-grid {
        flex-wrap: wrap;
        gap: 25px;
    }

    .trust-item {
        flex: 1 1 calc(50% - 13px);
    }

    .footer-content {
        flex-direction: column;
        gap: 30px;
    }

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

    .nav-main {
        gap: 20px;
    }

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