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

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

.nav-floating {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1200px;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 15px 30px;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c2c2c;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: #2c2c2c;
    font-weight: 500;
    transition: color 0.3s;
}

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

.ad-label {
    font-size: 0.75rem;
    color: #666;
    padding: 4px 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    background-color: #f5f5f5;
}

.hero-asymmetric {
    display: flex;
    min-height: 100vh;
    margin-top: 80px;
    padding: 40px 0;
}

.hero-content-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px 80px 60px 100px;
}

.hero-content-left h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 30px;
    color: #1a1a1a;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 40px;
}

.hero-cta-block a {
    text-decoration: none;
}

.cta-primary {
    display: inline-block;
    padding: 18px 45px;
    background-color: #8b7355;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    transition: background-color 0.3s, transform 0.2s;
}

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

.hero-image-right {
    flex: 1;
    position: relative;
}

.hero-image-right img {
    width: 100%;
    height: 100%;
    display: block;
}

.intro-offset {
    padding: 120px 100px;
    background-color: #fff;
}

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

.intro-image-left {
    flex: 0 0 45%;
    position: relative;
    margin-top: -60px;
}

.intro-image-left img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

.intro-text-right {
    flex: 1;
}

.intro-text-right h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #1a1a1a;
    line-height: 1.3;
}

.intro-text-right p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 20px;
}

.problem-amplification {
    padding: 100px 100px;
    background-color: #f5f3f0;
}

.problem-content {
    max-width: 1200px;
    margin: 0 auto;
}

.problem-content h2 {
    font-size: 2.8rem;
    margin-bottom: 60px;
    text-align: center;
    color: #1a1a1a;
}

.problem-blocks {
    display: flex;
    gap: 40px;
}

.problem-item {
    flex: 1;
    padding: 40px;
    background-color: #fff;
    border-radius: 8px;
}

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

.problem-item p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #5a5a5a;
}

.insight-reveal {
    padding: 120px 100px;
    background-color: #fff;
}

.insight-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 100px;
    align-items: center;
}

.insight-text {
    flex: 1;
}

.insight-text h2 {
    font-size: 2.6rem;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.insight-text p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 25px;
}

.insight-image {
    flex: 0 0 40%;
    position: relative;
    margin-bottom: -80px;
}

.insight-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

.trust-building {
    padding: 100px 100px;
    background-color: #2c2c2c;
    color: #fff;
}

.trust-building h2 {
    font-size: 2.8rem;
    margin-bottom: 60px;
    text-align: center;
}

.trust-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 50px;
}

.trust-card {
    flex: 1;
    padding: 40px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
}

.trust-card h3 {
    font-size: 1.6rem;
    margin-bottom: 20px;
    color: #fff;
}

.trust-card p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #d4d4d4;
}

.testimonials-inline {
    padding: 100px 100px;
    background-color: #f5f3f0;
}

.testimonial-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial {
    padding: 40px;
    margin-bottom: 30px;
    background-color: #fff;
    border-left: 4px solid #8b7355;
    border-radius: 4px;
}

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

.testimonial-author {
    display: block;
    font-size: 0.95rem;
    color: #666;
    font-style: normal;
}

.benefits-reveal {
    padding: 120px 100px;
    background-color: #fff;
}

.benefits-reveal h2 {
    font-size: 2.8rem;
    margin-bottom: 70px;
    text-align: center;
    color: #1a1a1a;
}

.benefits-layout {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
}

.benefit-card {
    flex: 0 0 calc(50% - 25px);
    display: flex;
    gap: 30px;
    padding: 30px;
    border-radius: 8px;
}

.benefit-image {
    flex: 0 0 45%;
}

.benefit-image img {
    width: 100%;
    height: 100%;
    display: block;
    border-radius: 6px;
}

.benefit-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.benefit-content h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    color: #2c2c2c;
}

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

.benefit-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #8b7355;
    margin: 20px 0;
}

.btn-select-service {
    padding: 14px 30px;
    background-color: #8b7355;
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
    margin-top: auto;
}

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

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

.form-container {
    max-width: 700px;
    margin: 0 auto;
    padding: 50px;
    background-color: #fff;
    border-radius: 8px;
}

.form-container h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.form-intro {
    font-size: 1.1rem;
    color: #4a4a4a;
    margin-bottom: 30px;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    font-size: 1rem;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-family: inherit;
}

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

.btn-submit {
    width: 100%;
    padding: 16px;
    background-color: #8b7355;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.final-cta {
    padding: 100px 100px;
    background-color: #2c2c2c;
    color: #fff;
}

.final-cta-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.final-cta-content h2 {
    font-size: 2.8rem;
    margin-bottom: 25px;
}

.final-cta-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #d4d4d4;
    margin-bottom: 40px;
}

.cta-secondary {
    display: inline-block;
    padding: 18px 45px;
    background-color: transparent;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    border: 2px solid #fff;
    border-radius: 8px;
    text-decoration: none;
    transition: background-color 0.3s, transform 0.2s;
}

.cta-secondary:hover {
    background-color: #fff;
    color: #2c2c2c;
    transform: translateY(-2px);
}

.footer {
    background-color: #1a1a1a;
    color: #d4d4d4;
    padding: 60px 100px 30px;
}

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

.footer-column {
    flex: 1;
}

.footer-column h4 {
    font-size: 1.3rem;
    color: #fff;
    margin-bottom: 20px;
}

.footer-column p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #b4b4b4;
    margin-bottom: 10px;
}

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

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

.footer-column ul li a {
    color: #b4b4b4;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-column ul li a:hover {
    color: #fff;
}

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto 30px;
    padding: 25px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    font-size: 0.85rem;
    line-height: 1.6;
    color: #a4a4a4;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #333;
    font-size: 0.9rem;
    color: #888;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(28, 28, 28, 0.98);
    color: #fff;
    padding: 25px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    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: 30px;
}

.cookie-content p {
    font-size: 0.95rem;
    line-height: 1.6;
    flex: 1;
}

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

.btn-accept,
.btn-reject {
    padding: 12px 30px;
    font-size: 0.95rem;
    font-weight: 600;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

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

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

.btn-reject {
    background-color: transparent;
    color: #fff;
    border: 2px solid #666;
}

.btn-reject:hover {
    background-color: #666;
    transform: translateY(-2px);
}

.page-hero {
    padding: 180px 100px 80px;
    text-align: center;
    background-color: #f5f3f0;
}

.page-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.page-hero p {
    font-size: 1.3rem;
    color: #4a4a4a;
}

.about-story {
    padding: 100px 100px;
    background-color: #fff;
}

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

.story-text {
    flex: 1;
}

.story-text h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #1a1a1a;
}

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

.story-image {
    flex: 0 0 45%;
}

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

.values-section {
    padding: 100px 100px;
    background-color: #f5f3f0;
}

.values-section h2 {
    font-size: 2.8rem;
    margin-bottom: 60px;
    text-align: center;
    color: #1a1a1a;
}

.values-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 50px;
}

.value-item {
    flex: 1;
    padding: 40px;
    background-color: #fff;
    border-radius: 8px;
}

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

.value-item p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #5a5a5a;
}

.team-section {
    padding: 100px 100px;
    background-color: #fff;
    text-align: center;
}

.team-section h2 {
    font-size: 2.8rem;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.team-intro {
    max-width: 900px;
    margin: 0 auto;
    font-size: 1.15rem;
    line-height: 1.8;
    color: #4a4a4a;
}

.services-detail {
    padding: 80px 100px;
    background-color: #fff;
}

.service-block {
    max-width: 1400px;
    margin: 0 auto 80px;
    display: flex;
    gap: 60px;
    align-items: center;
}

.service-block.reverse {
    flex-direction: row-reverse;
}

.service-content {
    flex: 1;
}

.service-content h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: #1a1a1a;
}

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

.service-list {
    list-style: none;
    margin: 20px 0;
}

.service-list li {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #5a5a5a;
    padding-left: 25px;
    position: relative;
    margin-bottom: 10px;
}

.service-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #8b7355;
    font-size: 1.5rem;
}

.service-price {
    font-size: 1.6rem;
    font-weight: 700;
    color: #8b7355;
    margin: 20px 0;
}

.btn-service {
    display: inline-block;
    padding: 14px 35px;
    background-color: #8b7355;
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 6px;
    text-decoration: none;
    transition: background-color 0.3s, transform 0.2s;
}

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

.service-image {
    flex: 0 0 45%;
}

.service-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

.contact-section {
    padding: 80px 100px;
    background-color: #fff;
}

.contact-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #1a1a1a;
}

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

.contact-item h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #2c2c2c;
}

.contact-item p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #5a5a5a;
}

.contact-map {
    flex: 0 0 45%;
}

.map-placeholder {
    width: 100%;
    height: 400px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #666;
}

.thanks-section {
    padding: 200px 100px 150px;
    background-color: #f5f3f0;
    text-align: center;
}

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

.thanks-container h1 {
    font-size: 3rem;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.thanks-message {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 20px;
}

.service-confirmation {
    font-size: 1.1rem;
    color: #8b7355;
    font-weight: 600;
    margin-bottom: 40px;
}

.thanks-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.btn-primary {
    display: inline-block;
    padding: 16px 40px;
    background-color: #8b7355;
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 6px;
    text-decoration: none;
    transition: background-color 0.3s, transform 0.2s;
}

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

.btn-secondary {
    display: inline-block;
    padding: 16px 40px;
    background-color: transparent;
    color: #8b7355;
    font-size: 1rem;
    font-weight: 600;
    border: 2px solid #8b7355;
    border-radius: 6px;
    text-decoration: none;
    transition: background-color 0.3s, color 0.3s, transform 0.2s;
}

.btn-secondary:hover {
    background-color: #8b7355;
    color: #fff;
    transform: translateY(-2px);
}

.legal-page {
    padding: 180px 100px 80px;
    background-color: #fff;
}

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

.legal-container h1 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.legal-updated {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 40px;
}

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

.legal-container h3 {
    font-size: 1.4rem;
    margin-top: 25px;
    margin-bottom: 10px;
    color: #2c2c2c;
}

.legal-container p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 15px;
}

.legal-container ul {
    margin: 15px 0;
    padding-left: 30px;
}

.legal-container ul li {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 10px;
}

.legal-container a {
    color: #8b7355;
    text-decoration: none;
}

.legal-container a:hover {
    text-decoration: underline;
}

@media (max-width: 1200px) {
    .hero-content-left,
    .intro-offset,
    .problem-amplification,
    .insight-reveal,
    .trust-building,
    .testimonials-inline,
    .benefits-reveal,
    .form-section,
    .final-cta,
    .footer,
    .page-hero,
    .about-story,
    .values-section,
    .team-section,
    .services-detail,
    .contact-section,
    .thanks-section,
    .legal-page {
        padding-left: 60px;
        padding-right: 60px;
    }
}

@media (max-width: 768px) {
    .nav-floating {
        width: 95%;
        padding: 12px 20px;
    }

    .nav-links {
        display: none;
    }

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

    .hero-content-left {
        padding: 40px 30px;
    }

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

    .intro-container,
    .insight-wrapper,
    .story-container,
    .contact-container {
        flex-direction: column;
    }

    .problem-blocks,
    .trust-grid,
    .values-grid {
        flex-direction: column;
    }

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

    .benefit-card {
        flex-direction: column;
        flex: 1 1 100%;
    }

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

    .service-block.reverse {
        flex-direction: column;
    }

    .thanks-actions {
        flex-direction: column;
    }
}