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

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

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

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

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #2c2c2c;
}

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

.main-nav a {
    color: #2c2c2c;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
}

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

.ad-label {
    font-size: 0.75rem;
    color: #666;
    padding: 0.3rem 0.8rem;
    background-color: #f5f5f5;
    border-radius: 3px;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: #2c2c2c;
}

.mobile-nav {
    display: none;
    flex-direction: column;
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 999;
}

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

.mobile-nav a {
    padding: 1rem 2rem;
    color: #2c2c2c;
    text-decoration: none;
    border-bottom: 1px solid #f0f0f0;
}

.hero-full {
    position: relative;
    height: 85vh;
    min-height: 600px;
    overflow: hidden;
}

.hero-image-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-color: #d4c5b0;
}

.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.5));
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.hero-text-center h1 {
    font-size: 3.5rem;
    font-weight: normal;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

.cta-hero {
    display: inline-block;
    padding: 1rem 3rem;
    background-color: #8b6f47;
    color: #ffffff;
    text-decoration: none;
    font-size: 1.1rem;
    border-radius: 2px;
    transition: background-color 0.3s;
}

.cta-hero:hover {
    background-color: #6f5637;
}

.narrow-story {
    max-width: 700px;
    margin: 6rem auto;
    padding: 0 2rem;
}

.story-container h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    font-weight: normal;
    line-height: 1.3;
}

.story-container p {
    margin-bottom: 1.8rem;
    font-size: 1.1rem;
}

.story-image {
    width: 100%;
    height: auto;
    margin: 3rem 0;
    object-fit: cover;
}

.problem-section {
    background-color: #f9f8f6;
    padding: 5rem 0;
}

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

.problem-text {
    flex: 1;
}

.problem-text h2 {
    font-size: 2.5rem;
    margin-bottom: 2.5rem;
    font-weight: normal;
}

.problem-list {
    list-style: none;
    margin-bottom: 2rem;
}

.problem-list li {
    padding: 0.8rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-size: 1.05rem;
}

.problem-list li:before {
    content: '×';
    position: absolute;
    left: 0;
    color: #c44536;
    font-size: 1.5rem;
}

.problem-conclusion {
    font-size: 1.1rem;
    font-style: italic;
    color: #555;
    margin-top: 2rem;
}

.problem-visual {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f4f1ec;
}

.problem-visual img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.insight-reveal {
    padding: 6rem 2rem;
    background-color: #ffffff;
}

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

.insight-container h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    font-weight: normal;
    text-align: center;
}

.insight-container > p {
    text-align: center;
    font-size: 1.15rem;
    max-width: 800px;
    margin: 0 auto 4rem;
    line-height: 1.8;
}

.insight-cards {
    display: flex;
    gap: 2.5rem;
    margin-top: 3rem;
}

.insight-card {
    flex: 1;
    padding: 2.5rem;
    background-color: #f9f8f6;
    border-left: 4px solid #8b6f47;
}

.insight-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: normal;
}

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

.trust-section {
    background-color: #2c2c2c;
    color: #ffffff;
    padding: 6rem 2rem;
}

.trust-content {
    max-width: 1000px;
    margin: 0 auto;
}

.trust-content h2 {
    font-size: 2.3rem;
    margin-bottom: 3rem;
    font-weight: normal;
    text-align: center;
}

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

.testimonial-inline {
    background-color: rgba(255,255,255,0.05);
    padding: 2.5rem;
    border-left: 3px solid #8b6f47;
}

.testimonial-text {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    font-size: 0.95rem;
    color: #aaa;
}

.services-reveal {
    padding: 6rem 2rem;
    background-color: #ffffff;
}

.services-container {
    max-width: 1300px;
    margin: 0 auto;
}

.services-container h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    font-weight: normal;
    text-align: center;
}

.services-intro {
    text-align: center;
    font-size: 1.1rem;
    max-width: 750px;
    margin: 0 auto 4rem;
    color: #555;
}

.service-blocks {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.service-block {
    background-color: #f9f8f6;
    padding: 2.5rem;
    border-radius: 3px;
    position: relative;
    transition: transform 0.3s;
}

.service-block:hover {
    transform: translateY(-3px);
}

.service-block.featured {
    background-color: #fff9f0;
    border: 2px solid #8b6f47;
}

.ribbon {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background-color: #8b6f47;
    color: #ffffff;
    padding: 0.4rem 1rem;
    font-size: 0.85rem;
    border-radius: 2px;
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.service-header h3 {
    font-size: 1.6rem;
    font-weight: normal;
    flex: 1;
}

.service-price {
    font-size: 1.8rem;
    color: #8b6f47;
    font-weight: bold;
}

.service-desc {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: #555;
}

.btn-select {
    padding: 0.9rem 2rem;
    background-color: #2c2c2c;
    color: #ffffff;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    border-radius: 2px;
    transition: background-color 0.3s;
}

.btn-select:hover {
    background-color: #8b6f47;
}

.form-section {
    background-color: #f4f1ec;
    padding: 6rem 2rem;
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 3rem;
    border-radius: 3px;
}

.form-container h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    font-weight: normal;
}

.form-intro {
    font-size: 1.05rem;
    margin-bottom: 2.5rem;
    color: #555;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.form-group label {
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    color: #2c2c2c;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.9rem;
    border: 1px solid #ddd;
    font-size: 1rem;
    font-family: inherit;
    border-radius: 2px;
}

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

.btn-submit {
    padding: 1.1rem;
    background-color: #8b6f47;
    color: #ffffff;
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
    border-radius: 2px;
    transition: background-color 0.3s;
    margin-top: 1rem;
}

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

.final-cta {
    background-color: #8b6f47;
    color: #ffffff;
    padding: 5rem 2rem;
    text-align: center;
}

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

.final-cta-content h2 {
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
    font-weight: normal;
    line-height: 1.3;
}

.final-cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

.cta-final {
    display: inline-block;
    padding: 1.1rem 3rem;
    background-color: #ffffff;
    color: #8b6f47;
    text-decoration: none;
    font-size: 1.1rem;
    border-radius: 2px;
    transition: transform 0.3s;
}

.cta-final:hover {
    transform: scale(1.05);
}

.disclaimer-section {
    background-color: #f9f8f6;
    padding: 3rem 2rem;
}

.disclaimer-container {
    max-width: 1100px;
    margin: 0 auto;
}

.disclaimer-text {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #666;
    text-align: center;
}

.footer {
    background-color: #2c2c2c;
    color: #ffffff;
    padding: 4rem 2rem 2rem;
}

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

.footer-col h4 {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    font-weight: normal;
}

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

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

.footer-col ul li {
    margin-bottom: 0.7rem;
}

.footer-col ul li a {
    color: #aaa;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
}

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

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c2c2c;
    color: #ffffff;
    padding: 1.5rem 2rem;
    z-index: 10000;
    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: 2rem;
}

.cookie-content p {
    margin: 0;
    font-size: 0.95rem;
}

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

.btn-accept,
.btn-reject {
    padding: 0.7rem 1.5rem;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    border-radius: 2px;
    transition: background-color 0.3s;
}

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

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

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

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

.thanks-container {
    max-width: 800px;
    margin: 6rem auto;
    padding: 4rem 2rem;
    text-align: center;
}

.thanks-container h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    font-weight: normal;
    color: #8b6f47;
}

.thanks-container p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.thanks-container .btn-home {
    display: inline-block;
    margin-top: 2rem;
    padding: 1rem 2.5rem;
    background-color: #8b6f47;
    color: #ffffff;
    text-decoration: none;
    border-radius: 2px;
    transition: background-color 0.3s;
}

.thanks-container .btn-home:hover {
    background-color: #6f5637;
}

.page-header {
    background-color: #f9f8f6;
    padding: 4rem 2rem;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: normal;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.2rem;
    color: #555;
}

.page-content {
    max-width: 1000px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.page-content h2 {
    font-size: 2rem;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    font-weight: normal;
}

.page-content h3 {
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-weight: normal;
}

.page-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.page-content ul,
.page-content ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

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

.about-grid {
    display: flex;
    gap: 4rem;
    margin: 4rem 0;
}

.about-text {
    flex: 1.5;
}

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

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

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

.service-card {
    flex: 1;
    min-width: 300px;
    background-color: #f9f8f6;
    padding: 2.5rem;
    border-radius: 3px;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
    font-weight: normal;
}

.service-card .price {
    font-size: 1.5rem;
    color: #8b6f47;
    margin-bottom: 1rem;
    font-weight: bold;
}

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

.contact-info {
    background-color: #f9f8f6;
    padding: 3rem;
    border-radius: 3px;
    margin-top: 3rem;
}

.contact-info h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: normal;
}

.contact-info p {
    font-size: 1.05rem;
    margin-bottom: 1rem;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .main-nav {
        display: none;
    }

    .nav-toggle {
        display: block;
    }

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

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

    .problem-grid {
        flex-direction: column;
        gap: 2rem;
    }

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

    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }

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

    .about-grid {
        flex-direction: column;
        gap: 2rem;
    }

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

    .service-card {
        min-width: 100%;
    }
}