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

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

.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 5%;
    background: #ffffff;
    border-bottom: 1px solid #e0e0e0;
}

.nav-brand {
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.nav-links {
    display: flex;
    gap: 3rem;
}

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

.nav-links a:hover {
    opacity: 0.6;
}

.ad-notice {
    font-size: 0.75rem;
    color: #666;
    border: 1px solid #ddd;
    padding: 0.3rem 0.8rem;
    border-radius: 3px;
}

.hero-minimal {
    position: relative;
    height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-image-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-image-bg img {
    width: 100%;
    height: 100%;
    opacity: 0.4;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    padding: 0 2rem;
}

.hero-content h1 {
    font-size: 4.5rem;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 2rem;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 1.4rem;
    font-weight: 300;
    color: #555;
}

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

.container-medium {
    max-width: 980px;
    margin: 0 auto;
    padding: 0 2rem;
}

.container-wide {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

.intro-narrative {
    padding: 8rem 0;
    background: #fafafa;
}

.lead-text {
    font-size: 1.5rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: #2d2d2d;
}

.intro-narrative p {
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
}

.problem-insight {
    padding: 8rem 0;
    background: #ffffff;
}

.problem-insight h2 {
    font-size: 2.8rem;
    font-weight: 400;
    margin-bottom: 4rem;
    text-align: center;
}

.insight-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
}

.insight-block {
    flex: 1;
    min-width: 280px;
}

.insight-block h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.insight-block p {
    font-size: 1.05rem;
    color: #555;
}

.image-interlude {
    padding: 6rem 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-interlude img {
    max-width: 800px;
    width: 100%;
    height: auto;
}

.solution-story {
    padding: 8rem 0;
    background: #fafafa;
}

.solution-story h2 {
    font-size: 2.8rem;
    font-weight: 400;
    margin-bottom: 3rem;
}

.solution-story p {
    font-size: 1.15rem;
    margin-bottom: 2rem;
}

.trust-elements {
    padding: 8rem 0;
    background: #f4f1ed;
}

.trust-card {
    background: #ffffff;
    padding: 3rem;
    margin-bottom: 2rem;
    border-left: 3px solid #2d2d2d;
}

.trust-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.trust-card p {
    font-size: 1.05rem;
    color: #555;
}

.testimonials-inline {
    padding: 8rem 0;
    background: #ffffff;
}

.testimonial {
    margin: 4rem 0;
    padding: 2rem 0;
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
}

.testimonial p {
    font-size: 1.3rem;
    font-style: italic;
    margin-bottom: 1rem;
    color: #2d2d2d;
}

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

.services-reveal {
    padding: 8rem 0;
    background: #fafafa;
}

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

.section-intro {
    text-align: center;
    font-size: 1.15rem;
    color: #555;
    margin-bottom: 4rem;
}

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

.service-card {
    flex: 1 1 calc(50% - 1.5rem);
    min-width: 320px;
    padding: 2.5rem;
    border: 1px solid #e0e0e0;
}

.service-image {
    width: 100%;
    height: 280px;
    margin-bottom: 2rem;
    overflow: hidden;
}

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

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

.service-card p {
    font-size: 1.05rem;
    color: #555;
    margin-bottom: 2rem;
}

.service-price {
    font-size: 2rem;
    font-weight: 600;
    color: #2d2d2d;
    margin-bottom: 2rem;
}

.btn-select {
    width: 100%;
    padding: 1rem;
    background: #2d2d2d;
    color: #ffffff;
    border: none;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-select:hover {
    background: #1a1a1a;
}

.form-section {
    padding: 8rem 0;
    background: #ffffff;
}

.form-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

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

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

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 1rem;
    font-weight: 500;
}

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

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

.btn-submit {
    width: 100%;
    padding: 1.2rem;
    background: #2d2d2d;
    color: #ffffff;
    border: none;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-submit:hover {
    background: #1a1a1a;
}

.ingredients-disclosure {
    padding: 8rem 0;
    background: #f4f1ed;
}

.ingredients-disclosure h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.ingredients-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.ingredients-list li {
    padding: 0.8rem 0;
    border-bottom: 1px solid #ddd;
    font-size: 1.05rem;
}

.ingredients-note {
    font-size: 0.95rem;
    color: #666;
    margin-top: 2rem;
}

.ingredients-note a {
    color: #2d2d2d;
    text-decoration: underline;
}

.final-cta {
    padding: 10rem 0;
    background: #2d2d2d;
    color: #ffffff;
    text-align: center;
}

.final-cta h2 {
    font-size: 3rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
}

.final-cta p {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    color: #ccc;
}

.btn-cta-large {
    display: inline-block;
    padding: 1.3rem 3.5rem;
    background: #ffffff;
    color: #2d2d2d;
    text-decoration: none;
    font-size: 1.1rem;
    transition: background 0.3s;
}

.btn-cta-large:hover {
    background: #f0f0f0;
}

.main-footer {
    background: #1a1a1a;
    color: #ccc;
    padding: 5rem 5% 2rem;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 4rem;
    margin-bottom: 4rem;
}

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

.footer-section h4 {
    color: #ffffff;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

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

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

.footer-section a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: #ffffff;
}

.references-list {
    font-size: 0.9rem;
    line-height: 1.6;
}

.references-list a {
    color: #ccc;
    text-decoration: underline;
}

.footer-disclaimer {
    background: #222;
    padding: 2rem;
    margin: 3rem 0;
    border-left: 3px solid #666;
}

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

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

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

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

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

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

.cookie-content a {
    color: #ffffff;
    text-decoration: underline;
}

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

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

.btn-accept {
    background: #ffffff;
    color: #1a1a1a;
}

.btn-accept:hover {
    background: #f0f0f0;
}

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

.btn-reject:hover {
    background: #2d2d2d;
}

.thanks-container {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 4rem 2rem;
}

.thanks-box {
    max-width: 600px;
}

.thanks-box h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.thanks-box p {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 1rem;
}

.thanks-box .service-highlight {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2d2d2d;
    margin: 2rem 0;
}

.thanks-box a {
    display: inline-block;
    margin-top: 2rem;
    padding: 1rem 2.5rem;
    background: #2d2d2d;
    color: #ffffff;
    text-decoration: none;
    transition: background 0.3s;
}

.thanks-box a:hover {
    background: #1a1a1a;
}

.about-hero {
    padding: 8rem 5%;
    background: #fafafa;
    text-align: center;
}

.about-hero h1 {
    font-size: 3.5rem;
    font-weight: 400;
    margin-bottom: 2rem;
}

.about-hero p {
    font-size: 1.3rem;
    color: #555;
    max-width: 800px;
    margin: 0 auto;
}

.about-content {
    padding: 6rem 0;
}

.about-content h2 {
    font-size: 2.5rem;
    font-weight: 400;
    margin-bottom: 2rem;
}

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

.services-list-page {
    padding: 8rem 0;
}

.services-list-page h1 {
    font-size: 3.5rem;
    font-weight: 400;
    margin-bottom: 3rem;
    text-align: center;
}

.contact-hero {
    padding: 8rem 5%;
    background: #fafafa;
}

.contact-hero h1 {
    font-size: 3.5rem;
    font-weight: 400;
    margin-bottom: 2rem;
}

.contact-info {
    padding: 6rem 0;
}

.contact-info h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
}

.info-item {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e0e0e0;
}

.info-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.info-item p {
    font-size: 1.05rem;
    color: #555;
}

.legal-page {
    padding: 6rem 5%;
}

.legal-page h1 {
    font-size: 3rem;
    font-weight: 400;
    margin-bottom: 3rem;
}

.legal-page h2 {
    font-size: 1.8rem;
    font-weight: 500;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
}

.legal-page h3 {
    font-size: 1.3rem;
    font-weight: 500;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

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

.legal-page ul,
.legal-page ol {
    margin: 1.5rem 0 1.5rem 2rem;
    line-height: 1.8;
}

.legal-page li {
    margin-bottom: 0.8rem;
}

.legal-page a {
    color: #2d2d2d;
    text-decoration: underline;
}

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

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

    .nav-links {
        gap: 1.5rem;
    }

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

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

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