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

:root {
    --primary-color: #1a5f7a;
    --secondary-color: #2d8a9e;
    --accent-color: #f59e0b;
    --dark-color: #1f2937;
    --light-color: #f3f4f6;
    --text-color: #374151;
    --white: #ffffff;
    --border-color: #d1d5db;
    --success-color: #10b981;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    color: var(--text-color);
    font-size: 16px;
    overflow-x: hidden;
}

.ad-disclosure {
    background-color: var(--dark-color);
    color: var(--white);
    text-align: center;
    padding: 8px 15px;
    font-size: 13px;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-minimal {
    background-color: var(--white);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 36px;
    z-index: 999;
}

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

.logo {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
}

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

.nav-links a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.hero-story {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-overlay {
    position: relative;
    z-index: 2;
    background: rgba(26, 95, 122, 0.92);
    padding: 60px 30px;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.hero-story h1 {
    color: var(--white);
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 25px;
    font-weight: 800;
}

.hero-intro {
    color: var(--white);
    font-size: 20px;
    line-height: 1.5;
    opacity: 0.95;
}

.story-intro {
    background-color: var(--light-color);
    padding: 80px 25px;
}

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

.story-lead {
    font-size: 20px;
    line-height: 1.8;
    color: var(--dark-color);
    margin-bottom: 20px;
    font-weight: 500;
}

.narrow-content p {
    margin-bottom: 18px;
    font-size: 17px;
    line-height: 1.8;
}

.problem-reveal {
    padding: 90px 25px;
    background-color: var(--white);
}

.split-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 50px;
    align-items: center;
    flex-wrap: wrap;
}

.text-block {
    flex: 1;
    min-width: 300px;
}

.text-block h2 {
    font-size: 34px;
    color: var(--dark-color);
    margin-bottom: 25px;
    line-height: 1.3;
    font-weight: 700;
}

.text-block p {
    margin-bottom: 18px;
    line-height: 1.8;
}

.image-block {
    flex: 1;
    min-width: 300px;
}

.image-block img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.insight-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 100px 25px;
    text-align: center;
}

.centered-insight h2 {
    color: var(--white);
    font-size: 38px;
    line-height: 1.4;
    margin-bottom: 30px;
    font-weight: 700;
}

.insight-text {
    color: var(--white);
    font-size: 20px;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
    opacity: 0.95;
}

.science-backed {
    padding: 80px 25px;
    background-color: var(--light-color);
}

.science-backed h2 {
    font-size: 34px;
    color: var(--dark-color);
    margin-bottom: 35px;
    text-align: center;
    font-weight: 700;
}

.citation {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.citation:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

.trust-building {
    padding: 80px 25px;
    background-color: var(--white);
}

.testimonial-flow {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 35px;
    flex-wrap: wrap;
    justify-content: center;
}

.testimonial-card {
    background-color: var(--light-color);
    padding: 35px;
    border-radius: 10px;
    flex: 1;
    min-width: 280px;
    max-width: 380px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.quote {
    font-size: 18px;
    line-height: 1.7;
    color: var(--dark-color);
    margin-bottom: 20px;
    font-style: italic;
}

.author {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 15px;
}

.how-it-works {
    padding: 90px 25px;
    background-color: var(--light-color);
}

.process-flow {
    max-width: 1000px;
    margin: 0 auto;
}

.process-flow h2 {
    font-size: 36px;
    color: var(--dark-color);
    margin-bottom: 50px;
    text-align: center;
    font-weight: 700;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.step {
    background-color: var(--white);
    padding: 30px;
    border-radius: 8px;
    border-left: 5px solid var(--primary-color);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
}

.step-number {
    font-size: 48px;
    font-weight: 800;
    color: var(--accent-color);
    margin-bottom: 15px;
    line-height: 1;
}

.step h3 {
    font-size: 24px;
    color: var(--dark-color);
    margin-bottom: 12px;
    font-weight: 700;
}

.step p {
    line-height: 1.7;
    color: var(--text-color);
}

.benefits-reveal {
    padding: 90px 25px;
    background-color: var(--white);
}

.benefits-grid {
    max-width: 1200px;
    margin: 0 auto;
}

.benefits-grid h2 {
    font-size: 36px;
    color: var(--dark-color);
    margin-bottom: 50px;
    text-align: center;
    font-weight: 700;
}

.benefit-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.benefit-card {
    background-color: var(--light-color);
    padding: 35px;
    border-radius: 10px;
    flex: 1;
    min-width: 260px;
    max-width: 300px;
}

.benefit-card h3 {
    font-size: 22px;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 700;
}

.benefit-card p {
    line-height: 1.7;
    color: var(--text-color);
}

.cta-inline {
    background: var(--accent-color);
    padding: 70px 25px;
    text-align: center;
}

.cta-content h3 {
    font-size: 32px;
    color: var(--white);
    margin-bottom: 25px;
    font-weight: 700;
}

.cta-button {
    display: inline-block;
    background-color: var(--dark-color);
    color: var(--white);
    padding: 18px 45px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.cta-button:hover {
    background-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
}

.detailed-offerings {
    padding: 90px 25px;
    background-color: var(--light-color);
}

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

.offerings-content h2 {
    font-size: 38px;
    color: var(--dark-color);
    margin-bottom: 20px;
    text-align: center;
    font-weight: 700;
}

.offerings-intro {
    text-align: center;
    font-size: 18px;
    margin-bottom: 60px;
    color: var(--text-color);
}

.offering-item {
    background-color: var(--white);
    padding: 45px;
    margin-bottom: 50px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    display: flex;
    gap: 40px;
    align-items: flex-start;
    flex-wrap: wrap;
}

.offering-item.reverse {
    flex-direction: row-reverse;
}

.offering-text {
    flex: 1;
    min-width: 300px;
}

.offering-text h3 {
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 700;
}

.offering-text p {
    margin-bottom: 12px;
    line-height: 1.7;
}

.price-reveal {
    font-size: 26px;
    font-weight: 800;
    color: var(--accent-color);
    margin-top: 25px;
}

.offering-item img {
    flex: 0 0 auto;
    width: 280px;
    height: 380px;
    object-fit: cover;
    border-radius: 8px;
}

.guarantee-section {
    padding: 80px 25px;
    background-color: var(--white);
}

.guarantee-section h2 {
    font-size: 34px;
    color: var(--dark-color);
    margin-bottom: 35px;
    text-align: center;
    font-weight: 700;
}

.guarantee-list {
    list-style: none;
    max-width: 700px;
    margin: 0 auto;
}

.guarantee-list li {
    padding: 18px 0 18px 35px;
    position: relative;
    font-size: 17px;
    line-height: 1.6;
    border-bottom: 1px solid var(--border-color);
}

.guarantee-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: 700;
    font-size: 20px;
}

.form-section {
    padding: 90px 25px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--dark-color) 100%);
}

.form-container {
    max-width: 650px;
    margin: 0 auto;
    background-color: var(--white);
    padding: 50px;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.25);
}

.form-container h2 {
    font-size: 32px;
    color: var(--dark-color);
    margin-bottom: 15px;
    text-align: center;
    font-weight: 700;
}

.form-container > p {
    text-align: center;
    margin-bottom: 35px;
    color: var(--text-color);
    line-height: 1.6;
}

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

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

.form-group label {
    font-weight: 600;
    color: var(--dark-color);
    font-size: 15px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    font-size: 16px;
    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: var(--primary-color);
}

.submit-button {
    background-color: var(--accent-color);
    color: var(--white);
    padding: 16px 40px;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}

.submit-button:hover {
    background-color: #d97706;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(245, 158, 11, 0.4);
}

.final-assurance {
    padding: 80px 25px;
    background-color: var(--light-color);
}

.final-assurance h2 {
    font-size: 34px;
    color: var(--dark-color);
    margin-bottom: 30px;
    text-align: center;
    font-weight: 700;
}

.site-footer {
    background-color: var(--dark-color);
    color: var(--white);
    padding: 60px 25px 20px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto 40px;
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: space-between;
}

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

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 18px;
    color: var(--white);
    font-weight: 700;
}

.footer-section p {
    line-height: 1.7;
    font-size: 14px;
    opacity: 0.9;
}

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

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

.footer-section ul li a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.85;
    transition: opacity 0.3s ease;
    font-size: 14px;
}

.footer-section ul li a:hover {
    opacity: 1;
    text-decoration: underline;
}

.footer-references {
    max-width: 1200px;
    margin: 0 auto 30px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-references h4 {
    font-size: 16px;
    margin-bottom: 15px;
    color: var(--white);
    font-weight: 700;
}

.reference {
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 10px;
    opacity: 0.85;
}

.reference a {
    color: var(--accent-color);
    text-decoration: none;
}

.reference a:hover {
    text-decoration: underline;
}

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

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    text-align: center;
    font-size: 14px;
    opacity: 0.75;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--dark-color);
    color: var(--white);
    padding: 25px;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    min-width: 250px;
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
}

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

.cookie-btn {
    padding: 12px 28px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s ease;
}

.cookie-btn.accept {
    background-color: var(--success-color);
    color: var(--white);
}

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

.cookie-btn.reject {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

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

.sticky-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: var(--accent-color);
    color: var(--white);
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.4);
    z-index: 998;
    transition: all 0.3s ease;
}

.sticky-cta:hover {
    background-color: #d97706;
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(245, 158, 11, 0.5);
}

.page-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 80px 25px;
    text-align: center;
    color: var(--white);
}

.page-header h1 {
    font-size: 42px;
    margin-bottom: 15px;
    font-weight: 800;
}

.header-subtitle {
    font-size: 20px;
    opacity: 0.95;
}

.about-story {
    padding: 80px 25px;
    background-color: var(--white);
}

.about-story h2 {
    font-size: 34px;
    color: var(--dark-color);
    margin-bottom: 30px;
    text-align: center;
    font-weight: 700;
}

.values-section {
    padding: 80px 25px;
    background-color: var(--light-color);
}

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

.values-container h2 {
    font-size: 34px;
    color: var(--dark-color);
    margin-bottom: 50px;
    text-align: center;
    font-weight: 700;
}

.values-grid {
    display: flex;
    gap: 35px;
    flex-wrap: wrap;
    justify-content: center;
}

.value-card {
    background-color: var(--white);
    padding: 35px;
    border-radius: 10px;
    flex: 1;
    min-width: 280px;
    max-width: 360px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.value-card h3 {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 700;
}

.value-card p {
    line-height: 1.7;
    color: var(--text-color);
}

.team-section {
    padding: 80px 25px;
    background-color: var(--white);
}

.team-section h2 {
    font-size: 34px;
    color: var(--dark-color);
    margin-bottom: 30px;
    text-align: center;
    font-weight: 700;
}

.certifications {
    padding: 80px 25px;
    background-color: var(--light-color);
}

.certifications h2 {
    font-size: 34px;
    color: var(--dark-color);
    margin-bottom: 35px;
    text-align: center;
    font-weight: 700;
}

.cert-list {
    list-style: none;
    max-width: 700px;
    margin: 0 auto;
}

.cert-list li {
    padding: 15px 0 15px 35px;
    position: relative;
    font-size: 17px;
    line-height: 1.6;
    border-bottom: 1px solid var(--border-color);
}

.cert-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 20px;
}

.approach-section {
    padding: 80px 25px;
    background-color: var(--white);
}

.numbers-section {
    padding: 80px 25px;
    background-color: var(--primary-color);
}

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

.numbers-container h2 {
    font-size: 36px;
    color: var(--white);
    margin-bottom: 50px;
    text-align: center;
    font-weight: 700;
}

.numbers-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.number-item {
    text-align: center;
    flex: 1;
    min-width: 200px;
}

.number {
    font-size: 56px;
    font-weight: 800;
    color: var(--accent-color);
    margin-bottom: 10px;
    line-height: 1;
}

.number-item p {
    color: var(--white);
    font-size: 16px;
    opacity: 0.95;
}

.services-intro {
    padding: 50px 25px;
    background-color: var(--white);
    text-align: center;
}

.service-detailed {
    padding: 50px 25px;
    background-color: var(--light-color);
}

.service-card-detailed {
    max-width: 1200px;
    margin: 0 auto;
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.service-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.service-header h2 {
    color: var(--white);
    font-size: 32px;
    font-weight: 700;
    margin: 0;
}

.service-price {
    color: var(--accent-color);
    font-size: 36px;
    font-weight: 800;
}

.service-body {
    padding: 45px;
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.service-card-detailed.reverse .service-body {
    flex-direction: row-reverse;
}

.service-description {
    flex: 1;
    min-width: 300px;
}

.service-description h3 {
    font-size: 22px;
    color: var(--primary-color);
    margin-bottom: 15px;
    margin-top: 25px;
    font-weight: 700;
}

.service-description h3:first-child {
    margin-top: 0;
}

.service-description ul {
    margin-left: 20px;
    margin-bottom: 20px;
}

.service-description ul li {
    margin-bottom: 8px;
    line-height: 1.6;
}

.service-image {
    flex: 0 0 auto;
}

.service-image img {
    width: 280px;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
}

.additional-services {
    padding: 80px 25px;
    background-color: var(--white);
}

.additional-services h2 {
    font-size: 34px;
    color: var(--dark-color);
    margin-bottom: 50px;
    text-align: center;
    font-weight: 700;
}

.additional-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.additional-item {
    background-color: var(--light-color);
    padding: 30px;
    border-radius: 10px;
    flex: 1;
    min-width: 260px;
    max-width: 360px;
}

.additional-item h3 {
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 12px;
    font-weight: 700;
}

.additional-item p {
    line-height: 1.7;
    margin-bottom: 15px;
}

.additional-price {
    font-size: 22px;
    font-weight: 800;
    color: var(--accent-color);
}

.process-timeline {
    padding: 80px 25px;
    background-color: var(--light-color);
}

.process-timeline h2 {
    font-size: 34px;
    color: var(--dark-color);
    margin-bottom: 50px;
    text-align: center;
    font-weight: 700;
}

.timeline {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.timeline-item {
    display: flex;
    gap: 25px;
    align-items: flex-start;
}

.timeline-marker {
    flex: 0 0 auto;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 700;
}

.timeline-content {
    flex: 1;
    background-color: var(--white);
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
}

.timeline-content h3 {
    font-size: 20px;
    color: var(--dark-color);
    margin-bottom: 10px;
    font-weight: 700;
}

.timeline-content p {
    line-height: 1.7;
    margin-bottom: 10px;
}

.timeline-duration {
    font-size: 14px;
    color: var(--primary-color);
    font-weight: 600;
}

.cta-services {
    padding: 70px 25px;
    background-color: var(--accent-color);
    text-align: center;
}

.cta-services h2 {
    font-size: 34px;
    color: var(--white);
    margin-bottom: 15px;
    font-weight: 700;
}

.cta-services p {
    font-size: 18px;
    color: var(--white);
    margin-bottom: 30px;
}

.contact-main {
    padding: 80px 25px;
    background-color: var(--white);
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
}

.contact-info-block {
    flex: 1;
    min-width: 300px;
}

.contact-info-block h2 {
    font-size: 34px;
    color: var(--dark-color);
    margin-bottom: 35px;
    font-weight: 700;
}

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

.contact-item h3 {
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 10px;
    font-weight: 700;
}

.contact-item p {
    line-height: 1.7;
    color: var(--text-color);
    margin-bottom: 5px;
}

.contact-map-placeholder {
    flex: 1;
    min-width: 300px;
}

.map-info {
    background-color: var(--light-color);
    padding: 30px;
    border-radius: 10px;
    height: 100%;
}

.map-info h3 {
    font-size: 22px;
    color: var(--dark-color);
    margin-bottom: 15px;
    font-weight: 700;
}

.map-info p {
    margin-bottom: 20px;
    line-height: 1.7;
}

.map-info img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.contact-form-section {
    padding: 80px 25px;
    background-color: var(--light-color);
}

.faq-section {
    padding: 80px 25px;
    background-color: var(--white);
}

.faq-section h2 {
    font-size: 34px;
    color: var(--dark-color);
    margin-bottom: 40px;
    text-align: center;
    font-weight: 700;
}

.faq-item {
    margin-bottom: 30px;
    padding-bottom: 25px;
    border-bottom: 1px solid var(--border-color);
}

.faq-item h3 {
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 12px;
    font-weight: 700;
}

.faq-item p {
    line-height: 1.7;
    color: var(--text-color);
}

.thanks-section {
    padding: 100px 25px;
    background-color: var(--light-color);
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-container {
    max-width: 700px;
    text-align: center;
    background-color: var(--white);
    padding: 60px 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background-color: var(--success-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    margin: 0 auto 30px;
}

.thanks-container h1 {
    font-size: 36px;
    color: var(--dark-color);
    margin-bottom: 15px;
    font-weight: 700;
}

.thanks-message {
    font-size: 20px;
    color: var(--text-color);
    margin-bottom: 30px;
}

.thanks-details {
    margin-bottom: 40px;
}

.thanks-details p {
    line-height: 1.7;
    margin-bottom: 12px;
    color: var(--text-color);
}

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

.btn-primary {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 14px 32px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
}

.btn-secondary {
    display: inline-block;
    background-color: transparent;
    color: var(--primary-color);
    padding: 14px 32px;
    border-radius: 6px;
    border: 2px solid var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.next-steps {
    padding: 80px 25px;
    background-color: var(--white);
}

.next-steps h2 {
    font-size: 34px;
    color: var(--dark-color);
    margin-bottom: 50px;
    text-align: center;
    font-weight: 700;
}

.steps-grid {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    gap: 35px;
    flex-wrap: wrap;
    justify-content: center;
}

.step-box {
    background-color: var(--light-color);
    padding: 35px;
    border-radius: 10px;
    flex: 1;
    min-width: 260px;
    max-width: 300px;
    text-align: center;
}

.step-num {
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto 20px;
}

.step-box h3 {
    font-size: 20px;
    color: var(--dark-color);
    margin-bottom: 12px;
    font-weight: 700;
}

.step-box p {
    line-height: 1.7;
    color: var(--text-color);
}

.resources-section {
    padding: 80px 25px;
    background-color: var(--light-color);
}

.resources-section h2 {
    font-size: 34px;
    color: var(--dark-color);
    margin-bottom: 30px;
    text-align: center;
    font-weight: 700;
}

.resources-list {
    list-style: none;
    max-width: 700px;
    margin: 0 auto;
}

.resources-list li {
    padding: 15px 0 15px 35px;
    position: relative;
    font-size: 17px;
    line-height: 1.7;
    border-bottom: 1px solid var(--border-color);
}

.resources-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 20px;
}

.resources-list a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.resources-list a:hover {
    text-decoration: underline;
}

.legal-page {
    padding: 60px 25px 100px;
    background-color: var(--white);
}

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

.legal-content h1 {
    font-size: 38px;
    color: var(--dark-color);
    margin-bottom: 20px;
    font-weight: 700;
}

.last-updated {
    font-size: 14px;
    color: var(--text-color);
    margin-bottom: 40px;
    opacity: 0.8;
}

.legal-content h2 {
    font-size: 28px;
    color: var(--dark-color);
    margin-top: 40px;
    margin-bottom: 20px;
    font-weight: 700;
}

.legal-content h3 {
    font-size: 22px;
    color: var(--primary-color);
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: 700;
}

.legal-content p {
    margin-bottom: 18px;
    line-height: 1.8;
}

.legal-content ul {
    margin-left: 25px;
    margin-bottom: 20px;
}

.legal-content ul li {
    margin-bottom: 10px;
    line-height: 1.7;
}

.legal-content a {
    color: var(--primary-color);
    text-decoration: none;
}

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

.legal-content strong {
    color: var(--dark-color);
}

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
}

.cookies-table th,
.cookies-table td {
    border: 1px solid var(--border-color);
    padding: 12px;
    text-align: left;
}

.cookies-table th {
    background-color: var(--light-color);
    font-weight: 700;
    color: var(--dark-color);
}

@media (max-width: 768px) {
    .hero-story h1 {
        font-size: 32px;
    }

    .hero-intro {
        font-size: 18px;
    }

    .page-header h1 {
        font-size: 32px;
    }

    .header-subtitle {
        font-size: 17px;
    }

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

    .offering-item,
    .offering-item.reverse {
        flex-direction: column;
    }

    .offering-item img {
        width: 100%;
        height: 300px;
    }

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

    .nav-container {
        flex-direction: column;
        gap: 20px;
    }

    .nav-links {
        justify-content: center;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-buttons {
        width: 100%;
        flex-direction: column;
    }

    .cookie-btn {
        width: 100%;
    }

    .sticky-cta {
        bottom: 20px;
        right: 20px;
        padding: 14px 24px;
        font-size: 15px;
    }

    .form-container {
        padding: 35px 25px;
    }

    .service-header {
        flex-direction: column;
        text-align: center;
    }

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

    .service-card-detailed.reverse .service-body {
        flex-direction: column;
    }

    .thanks-container {
        padding: 40px 25px;
    }

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

    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-story h1 {
        font-size: 26px;
    }

    .page-header h1 {
        font-size: 28px;
    }

    .text-block h2,
    .science-backed h2,
    .process-flow h2,
    .benefits-grid h2,
    .offerings-content h2,
    .guarantee-section h2,
    .form-container h2,
    .final-assurance h2,
    .about-story h2,
    .values-container h2,
    .team-section h2,
    .certifications h2,
    .numbers-container h2,
    .additional-services h2,
    .process-timeline h2,
    .cta-services h2,
    .contact-info-block h2,
    .faq-section h2,
    .next-steps h2,
    .resources-section h2,
    .legal-content h1 {
        font-size: 26px;
    }

    .centered-insight h2 {
        font-size: 28px;
    }

    .cta-content h3 {
        font-size: 24px;
    }
}