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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.7;
    color: #2a2a2a;
    background: #fafafa;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #fff;
    padding: 1.5rem;
    z-index: 10000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
}

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

.cookie-accept,
.cookie-reject {
    padding: 0.75rem 1.5rem;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.cookie-accept {
    background: #7c5c4a;
    color: #fff;
}

.cookie-accept:hover {
    background: #654a3c;
}

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

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

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

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

.nav-logo {
    font-size: 1.4rem;
    font-weight: 600;
    color: #7c5c4a;
    letter-spacing: 0.5px;
}

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

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

.nav-links a:hover {
    color: #7c5c4a;
}

.ad-label {
    font-size: 0.8rem;
    color: #888;
    padding: 0.4rem 0.8rem;
    border: 1px solid #ddd;
    border-radius: 3px;
}

.hero-fullscreen {
    height: 85vh;
    position: relative;
    overflow: hidden;
}

.hero-image-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
}

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

.hero-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    z-index: 2;
    max-width: 800px;
    padding: 2rem;
}

.hero-overlay h1 {
    font-size: 3.5rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-overlay p {
    font-size: 1.4rem;
    font-weight: 300;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.story-intro {
    padding: 6rem 2rem;
    background: #fff;
}

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

.story-intro h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    font-weight: 400;
    color: #1a1a1a;
    line-height: 1.3;
}

.story-intro p {
    font-size: 1.15rem;
    margin-bottom: 1.8rem;
    color: #3a3a3a;
}

.story-intro img {
    width: 100%;
    margin: 3rem 0;
    border-radius: 4px;
    background-color: #f0ebe7;
}

.problem-amplification {
    background: #f5f1ee;
    padding: 5rem 2rem;
}

.split-layout {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.split-text {
    flex: 1;
}

.split-text h2 {
    font-size: 2.4rem;
    margin-bottom: 2rem;
    font-weight: 400;
    color: #1a1a1a;
}

.split-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #3a3a3a;
}

.split-text ul {
    list-style: none;
    margin: 2rem 0;
}

.split-text ul li {
    padding: 0.8rem 0;
    padding-left: 1.8rem;
    position: relative;
    font-size: 1.05rem;
}

.split-text ul li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #7c5c4a;
    font-weight: bold;
}

.split-image {
    flex: 1;
}

.split-image img {
    width: 100%;
    border-radius: 4px;
    background-color: #e8e3df;
}

.insight-section {
    background: #7c5c4a;
    color: #fff;
    padding: 5rem 2rem;
}

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

.insight-section h2 {
    font-size: 2.5rem;
    margin-bottom: 2.5rem;
    font-weight: 400;
    text-align: center;
}

.insight-section p {
    font-size: 1.2rem;
    margin-bottom: 1.8rem;
    line-height: 1.8;
}

.insight-section a {
    color: #ffd4a3;
    text-decoration: none;
    border-bottom: 1px solid #ffd4a3;
}

.insight-section a:hover {
    color: #ffe0b8;
    border-bottom-color: #ffe0b8;
}

.trust-building {
    padding: 6rem 2rem;
    background: #fff;
}

.trust-building h2 {
    font-size: 2.3rem;
    margin-bottom: 2rem;
    font-weight: 400;
    color: #1a1a1a;
}

.trust-building p {
    font-size: 1.15rem;
    margin-bottom: 1.8rem;
    color: #3a3a3a;
}

.trust-building img {
    width: 100%;
    margin: 3rem 0;
    border-radius: 4px;
    background-color: #f0ebe7;
}

.testimonials-inline {
    padding: 5rem 2rem;
    background: #f9f7f5;
}

.testimonial-card {
    max-width: 800px;
    margin: 0 auto 3rem;
    padding: 2.5rem;
    background: #fff;
    border-left: 4px solid #7c5c4a;
}

.testimonial-card p {
    font-size: 1.2rem;
    font-style: italic;
    color: #2a2a2a;
    margin-bottom: 1rem;
    line-height: 1.7;
}

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

.benefits-reveal {
    padding: 6rem 2rem;
    background: #fff;
}

.benefits-reveal h2 {
    font-size: 2.5rem;
    margin-bottom: 4rem;
    font-weight: 400;
    text-align: center;
    color: #1a1a1a;
}

.benefits-grid {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
    justify-content: center;
}

.benefit-item {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
}

.benefit-item img {
    width: 100%;
    border-radius: 4px;
    margin-bottom: 1.5rem;
    background-color: #f0ebe7;
}

.benefit-item h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 500;
    color: #1a1a1a;
}

.benefit-item p {
    font-size: 1rem;
    color: #3a3a3a;
    line-height: 1.6;
}

.services-pricing {
    padding: 6rem 2rem;
    background: #f5f1ee;
}

.services-pricing h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 400;
    text-align: center;
    color: #1a1a1a;
}

.services-pricing > .narrow-content > p {
    text-align: center;
    font-size: 1.15rem;
    color: #3a3a3a;
    margin-bottom: 4rem;
}

.services-list {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    justify-content: center;
}

.service-card {
    background: #fff;
    border-radius: 6px;
    overflow: hidden;
    flex: 1;
    min-width: 320px;
    max-width: 380px;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card img {
    width: 100%;
    background-color: #e8e3df;
}

.service-card h3 {
    font-size: 1.5rem;
    margin: 1.5rem 1.5rem 1rem;
    font-weight: 500;
    color: #1a1a1a;
}

.service-card p {
    font-size: 1rem;
    margin: 0 1.5rem 1.5rem;
    color: #3a3a3a;
    line-height: 1.6;
}

.price {
    font-size: 2rem;
    font-weight: 600;
    color: #7c5c4a;
    margin: 1.5rem;
}

.select-btn {
    width: calc(100% - 3rem);
    margin: 0 1.5rem 1.5rem;
    padding: 1rem;
    background: #7c5c4a;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s ease;
}

.select-btn:hover {
    background: #654a3c;
}

.contact-form-section {
    padding: 6rem 2rem;
    background: #fff;
}

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

.form-container h2 {
    font-size: 2.3rem;
    margin-bottom: 1rem;
    font-weight: 400;
    text-align: center;
    color: #1a1a1a;
}

.form-container > p {
    text-align: center;
    font-size: 1.1rem;
    color: #3a3a3a;
    margin-bottom: 3rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.6rem;
    font-size: 0.95rem;
    color: #2a2a2a;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    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: #7c5c4a;
}

.submit-btn {
    width: 100%;
    padding: 1.2rem;
    background: #7c5c4a;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background 0.3s ease;
    margin-top: 1rem;
}

.submit-btn:hover {
    background: #654a3c;
}

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

.disclaimer-text {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.7;
    font-style: italic;
}

.main-footer {
    background: #2a2a2a;
    color: #e0e0e0;
    padding: 4rem 2rem 2rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.footer-section {
    flex: 1;
    min-width: 200px;
}

.footer-section h4 {
    font-size: 1.2rem;
    margin-bottom: 1.2rem;
    color: #fff;
    font-weight: 500;
}

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

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

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

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

.footer-section ul li a:hover {
    color: #7c5c4a;
}

.footer-references {
    max-width: 1200px;
    margin: 0 auto 2rem;
    padding-top: 2rem;
    border-top: 1px solid #444;
}

.footer-references h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #fff;
    font-weight: 500;
}

.footer-references ol {
    padding-left: 1.5rem;
}

.footer-references ol li {
    margin-bottom: 0.6rem;
    font-size: 0.9rem;
}

.footer-references ol li a {
    color: #b0b0b0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-references ol li a:hover {
    color: #7c5c4a;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid #444;
    text-align: center;
}

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

.thanks-container {
    max-width: 700px;
    margin: 5rem auto;
    padding: 4rem 2rem;
    text-align: center;
    background: #f9f7f5;
    border-radius: 8px;
}

.thanks-container h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #7c5c4a;
    font-weight: 400;
}

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

.thanks-container .back-btn {
    display: inline-block;
    margin-top: 2rem;
    padding: 1rem 2.5rem;
    background: #7c5c4a;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    transition: background 0.3s ease;
}

.thanks-container .back-btn:hover {
    background: #654a3c;
}

.page-container {
    max-width: 1200px;
    margin: 3rem auto;
    padding: 2rem;
}

.page-header {
    margin-bottom: 3rem;
}

.page-header h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    font-weight: 400;
    color: #1a1a1a;
}

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

.content-section {
    background: #fff;
    padding: 3rem;
    margin-bottom: 2rem;
    border-radius: 6px;
}

.content-section h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: 500;
    color: #1a1a1a;
}

.content-section h3 {
    font-size: 1.5rem;
    margin: 2rem 0 1rem;
    font-weight: 500;
    color: #2a2a2a;
}

.content-section p {
    font-size: 1.05rem;
    margin-bottom: 1.2rem;
    color: #3a3a3a;
    line-height: 1.7;
}

.content-section ul {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.content-section ul li {
    margin-bottom: 0.8rem;
    font-size: 1.05rem;
    color: #3a3a3a;
    line-height: 1.6;
}

.contact-info {
    background: #f9f7f5;
    padding: 2rem;
    border-radius: 6px;
    margin-bottom: 2rem;
}

.contact-info h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.contact-info p {
    font-size: 1.05rem;
    margin-bottom: 0.8rem;
    color: #3a3a3a;
}

@media (max-width: 768px) {
    .hero-overlay h1 {
        font-size: 2.2rem;
    }

    .hero-overlay p {
        font-size: 1.1rem;
    }

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

    .nav-links {
        flex-wrap: wrap;
        gap: 1rem;
    }

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

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