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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #ffffff;
}

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

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

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

.logo {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c3e50;
}

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

.nav-links a {
    color: #2c3e50;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
}

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

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

.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: #2c3e50;
    margin: 3px 0;
    transition: 0.3s;
}

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

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

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

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

.hero-text-column p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 35px;
}

.cta-link {
    display: inline-block;
    padding: 15px 35px;
    background-color: #8b7355;
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.cta-link:hover {
    background-color: #6d5940;
}

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

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

.intro-narrative {
    background-color: #f8f5f0;
    padding: 80px 40px;
}

.narrow-content {
    max-width: 800px;
    margin: 0 auto;
}

.narrow-content p {
    font-size: 1.15rem;
    line-height: 1.9;
    margin-bottom: 25px;
    color: #444;
}

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

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

.insight-text {
    flex: 1 1 500px;
}

.insight-text h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
    color: #2c3e50;
}

.insight-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #555;
}

.insight-image {
    flex: 1 1 350px;
    background-color: #e8e4de;
}

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

.insight-stats {
    flex: 1 1 100%;
    display: flex;
    gap: 60px;
    margin-top: 30px;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #8b7355;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1rem;
    color: #666;
    max-width: 250px;
}

.services-magazine {
    background-color: #fafafa;
    padding: 100px 40px;
}

.section-header-wide {
    max-width: 1400px;
    margin: 0 auto 60px auto;
    text-align: center;
}

.section-header-wide h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    color: #2c3e50;
}

.section-header-wide p {
    font-size: 1.2rem;
    color: #666;
}

.services-columns {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.service-card-magazine {
    display: flex;
    gap: 50px;
    background-color: #ffffff;
    padding: 40px;
}

.service-card-magazine:nth-child(even) {
    flex-direction: row-reverse;
}

.service-image {
    flex: 0 0 400px;
    background-color: #e8e4de;
}

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

.service-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

.service-content p {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 15px;
    color: #555;
}

.service-price {
    font-size: 1.3rem;
    font-weight: 600;
    color: #8b7355;
    margin-top: 15px;
    margin-bottom: 20px;
}

.service-select {
    align-self: flex-start;
    padding: 12px 30px;
    background-color: #2c3e50;
    color: #ffffff;
    border: none;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

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

.testimonial-wrapper {
    display: flex;
    gap: 60px;
}

.testimonial-content {
    flex: 1;
}

.testimonial-content blockquote {
    font-size: 1.15rem;
    line-height: 1.8;
    font-style: italic;
    color: #444;
    margin-bottom: 15px;
}

.testimonial-content cite {
    font-style: normal;
    font-size: 0.95rem;
    color: #777;
}

.form-section {
    background-color: #f8f5f0;
    padding: 100px 40px;
}

.form-container-magazine {
    max-width: 800px;
    margin: 0 auto;
}

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

.form-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #2c3e50;
}

.form-intro p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.7;
}

.inquiry-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

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

.form-group label {
    font-size: 1rem;
    margin-bottom: 8px;
    color: #2c3e50;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    padding: 12px 15px;
    font-size: 1rem;
    border: 1px solid #ccc;
    background-color: #ffffff;
    font-family: inherit;
}

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

.submit-btn {
    align-self: flex-start;
    padding: 15px 40px;
    background-color: #8b7355;
    color: #ffffff;
    border: none;
    font-size: 1.1rem;
    cursor: pointer;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

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

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

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

.trust-item {
    flex: 1;
}

.trust-item h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #2c3e50;
}

.trust-item p {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
}

.main-footer {
    background-color: #2c3e50;
    color: #ffffff;
    padding: 60px 40px 30px 40px;
}

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

.footer-col {
    flex: 1;
}

.footer-col h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.footer-col p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #cbd5e0;
}

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

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

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

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

.footer-disclaimer {
    max-width: 1400px;
    margin: 0 auto 30px auto;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.05);
    border-left: 3px solid #8b7355;
}

.footer-disclaimer p {
    font-size: 0.85rem;
    line-height: 1.6;
    color: #cbd5e0;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 25px 40px;
    z-index: 2000;
    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: 0.95rem;
    line-height: 1.5;
}

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

.cookie-btn {
    padding: 10px 25px;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    transition: background-color 0.3s ease;
}

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

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

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

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

.page-hero-simple {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 40px 40px 40px;
    text-align: center;
}

.page-hero-simple h1 {
    font-size: 3rem;
    color: #2c3e50;
    margin-bottom: 20px;
}

.page-hero-simple p {
    font-size: 1.2rem;
    color: #666;
}

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

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

.story-text-main {
    flex: 1.5;
}

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

.story-text-main p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #555;
}

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

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

.approach-section {
    background-color: #fafafa;
    padding: 80px 40px;
}

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

.approach-content h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
    color: #2c3e50;
}

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

.approach-image-full {
    max-width: 1400px;
    margin: 0 auto;
    background-color: #e8e4de;
}

.approach-image-full img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

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

.values-container h2 {
    font-size: 2.5rem;
    margin-bottom: 50px;
    text-align: center;
    color: #2c3e50;
}

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

.value-card {
    flex: 1 1 calc(50% - 20px);
    background-color: #f8f5f0;
    padding: 35px;
}

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

.value-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
}

.team-brief {
    background-color: #2c3e50;
    color: #ffffff;
    padding: 80px 40px;
}

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

.team-content h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
}

.team-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #cbd5e0;
}

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

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

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

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

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

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

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

.service-detail-content p {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 15px;
    color: #555;
}

.service-price-large {
    font-size: 1.5rem;
    font-weight: 600;
    color: #8b7355;
    margin-top: 20px;
    margin-bottom: 10px;
}

.service-note {
    font-size: 0.9rem;
    color: #777;
    font-style: italic;
    margin-bottom: 25px;
}

.contact-info-layout {
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 40px;
    display: flex;
    gap: 80px;
}

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

.contact-block h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #2c3e50;
}

.contact-block p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 10px;
}

.contact-image {
    flex: 1;
    background-color: #e8e4de;
}

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

.additional-info {
    background-color: #f8f5f0;
    padding: 60px 40px;
}

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

.info-container h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #2c3e50;
}

.info-container p {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 15px;
    color: #555;
}

.thanks-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 40px;
    display: flex;
    gap: 80px;
    align-items: center;
}

.thanks-content {
    flex: 1.5;
}

.thanks-content h1 {
    font-size: 3rem;
    margin-bottom: 25px;
    color: #2c3e50;
}

.thanks-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #555;
}

.service-confirmation {
    font-weight: 600;
    color: #8b7355;
    font-size: 1.15rem;
}

.thanks-actions {
    display: flex;
    gap: 20px;
    margin-top: 35px;
}

.btn-primary {
    padding: 15px 35px;
    background-color: #8b7355;
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

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

.btn-secondary {
    padding: 15px 35px;
    background-color: transparent;
    color: #2c3e50;
    text-decoration: none;
    border: 2px solid #2c3e50;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: #2c3e50;
    color: #ffffff;
}

.thanks-image {
    flex: 1;
    background-color: #e8e4de;
}

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

.next-steps {
    background-color: #fafafa;
    padding: 80px 40px;
}

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

.steps-container h2 {
    font-size: 2.5rem;
    margin-bottom: 50px;
    text-align: center;
    color: #2c3e50;
}

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

.step-item {
    flex: 1;
    text-align: center;
}

.step-number {
    display: inline-block;
    width: 60px;
    height: 60px;
    background-color: #8b7355;
    color: #ffffff;
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 60px;
    border-radius: 50%;
    margin-bottom: 20px;
}

.step-item h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #2c3e50;
}

.step-item p {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
}

.legal-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 40px 80px 40px;
}

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

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

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

.legal-page p {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 15px;
    color: #555;
}

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

.legal-page ul li {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 10px;
    color: #555;
}

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

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

@media (max-width: 1024px) {
    .hero-content-split,
    .story-layout,
    .service-detail-item,
    .contact-info-layout,
    .thanks-container {
        flex-direction: column;
    }

    .service-card-magazine:nth-child(even) {
        flex-direction: column;
    }

    .service-image,
    .service-detail-image {
        flex: 1 1 auto;
        max-height: 400px;
    }

    .testimonial-wrapper,
    .trust-grid,
    .steps-grid {
        flex-direction: column;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #ffffff;
        flex-direction: column;
        padding: 20px;
        border-top: 1px solid #e0e0e0;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-toggle {
        display: flex;
    }

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-text-column h1 {
        font-size: 2.5rem;
    }

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

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

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

    .hero-magazine,
    .featured-insight,
    .services-magazine,
    .about-story,
    .values-grid,
    .services-detailed,
    .contact-info-layout,
    .thanks-container,
    .next-steps {
        padding: 40px 20px;
    }

    .hero-text-column h1 {
        font-size: 2rem;
    }

    .service-card-magazine {
        padding: 25px;
    }

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