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

:root {
    --primary-color: #1a2332;
    --secondary-color: #2c5f8d;
    --accent-color: #e8934e;
    --text-color: #333333;
    --light-bg: #f8f9fa;
    --white: #ffffff;
    --border-color: #e0e0e0;
    --success-color: #4caf50;
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 8px 24px rgba(0, 0, 0, 0.12);
}

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

.ad-disclosure {
    background-color: var(--primary-color);
    color: var(--white);
    text-align: center;
    padding: 8px 16px;
    font-size: 13px;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-floating {
    position: sticky;
    top: 29px;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow);
    z-index: 999;
}

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

.brand {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
}

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

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

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

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 2px;
    background-color: var(--primary-color);
    transition: all 0.3s;
}

.hero-visual {
    position: relative;
    width: 100%;
    min-height: 600px;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    background-color: #1a2332;
}

.hero-image-wrapper img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    opacity: 0.7;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(to bottom, rgba(26, 35, 50, 0.4), rgba(26, 35, 50, 0.7));
}

.hero-content {
    text-align: center;
    color: var(--white);
    max-width: 800px;
    padding: 32px;
}

.hero-content h1 {
    font-size: 52px;
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.2;
}

.hero-subtext {
    font-size: 22px;
    font-weight: 300;
    opacity: 0.95;
}

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

.centered-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 32px;
}

.story-intro {
    background-color: var(--light-bg);
}

.intro-text {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 24px;
    color: var(--primary-color);
}

.story-intro p {
    font-size: 18px;
    margin-bottom: 16px;
}

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

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

.split-layout.reverse {
    flex-direction: row-reverse;
}

.split-text {
    flex: 1;
}

.split-text h2 {
    font-size: 38px;
    margin-bottom: 24px;
    color: var(--primary-color);
}

.split-text p {
    font-size: 17px;
    margin-bottom: 20px;
    line-height: 1.8;
}

.split-image {
    flex: 1;
    background-color: #e8eaed;
}

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

.insight-reveal {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    padding: 100px 32px;
    color: var(--white);
}

.insight-reveal h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 24px;
}

.insight-lead {
    text-align: center;
    font-size: 20px;
    margin-bottom: 64px;
    opacity: 0.9;
}

.insight-cards {
    display: flex;
    gap: 48px;
    max-width: 1000px;
    margin: 0 auto;
}

.insight-card {
    flex: 1;
    text-align: center;
}

.insight-number {
    font-size: 64px;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 16px;
}

.insight-card p {
    font-size: 16px;
    line-height: 1.6;
}

.solution-story {
    background-color: var(--white);
}

.solution-story h2 {
    font-size: 38px;
    margin-bottom: 24px;
    color: var(--primary-color);
}

.solution-story p {
    font-size: 17px;
    margin-bottom: 20px;
    line-height: 1.8;
}

.solution-story img {
    width: 100%;
    margin-top: 48px;
    border-radius: 8px;
    object-fit: cover;
    background-color: #e8eaed;
}

.trust-elements {
    background-color: var(--light-bg);
    padding: 80px 32px;
}

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

.trust-item {
    flex: 1;
    background-color: var(--white);
    padding: 40px;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.trust-item h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: var(--secondary-color);
}

.trust-item p {
    font-size: 16px;
    line-height: 1.7;
}

.testimonials-inline {
    background-color: var(--white);
}

.testimonials-inline h2 {
    font-size: 38px;
    margin-bottom: 48px;
    text-align: center;
    color: var(--primary-color);
}

.testimonial-block {
    background-color: var(--light-bg);
    padding: 32px;
    margin-bottom: 24px;
    border-left: 4px solid var(--accent-color);
    border-radius: 4px;
}

.testimonial-text {
    font-size: 18px;
    font-style: italic;
    margin-bottom: 16px;
    line-height: 1.7;
}

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

.benefits-reveal {
    background-color: var(--light-bg);
    padding: 80px 32px;
}

.benefits-asymmetric {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
}

.benefit-large {
    flex: 1 1 100%;
    position: relative;
    background-color: #2c5f8d;
    border-radius: 12px;
    overflow: hidden;
    min-height: 400px;
}

.benefit-large img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
}

.benefit-text {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 48px;
    color: var(--white);
    background: linear-gradient(to top, rgba(26, 35, 50, 0.95), transparent);
}

.benefit-text h3 {
    font-size: 32px;
    margin-bottom: 16px;
}

.benefit-text p {
    font-size: 17px;
    line-height: 1.7;
}

.benefit-small {
    flex: 1 1 calc(50% - 16px);
    background-color: var(--white);
    padding: 40px;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.benefit-small h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: var(--secondary-color);
}

.benefit-small p {
    font-size: 16px;
    line-height: 1.7;
}

.services-pricing {
    background-color: var(--white);
    padding: 100px 32px;
}

.services-pricing h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

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

.services-grid {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
}

.service-card {
    flex: 1 1 calc(33.333% - 22px);
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.service-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    background-color: #e8eaed;
}

.service-card h3 {
    font-size: 24px;
    padding: 24px 24px 12px;
    color: var(--primary-color);
}

.service-card p {
    padding: 0 24px 16px;
    font-size: 15px;
    line-height: 1.6;
    color: #555;
}

.price {
    font-size: 28px;
    font-weight: 700;
    color: var(--secondary-color);
    padding: 0 24px 16px;
}

.cta-service {
    width: calc(100% - 48px);
    margin: 0 24px 24px;
    padding: 14px 24px;
    background-color: var(--accent-color);
    color: var(--white);
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.cta-service:hover {
    background-color: #d17d3a;
}

.form-section {
    background-color: var(--light-bg);
    padding: 100px 32px;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background-color: var(--white);
    padding: 48px;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.form-container h2 {
    font-size: 32px;
    margin-bottom: 16px;
    color: var(--primary-color);
    text-align: center;
}

.form-intro {
    text-align: center;
    font-size: 16px;
    margin-bottom: 32px;
    color: #666;
}

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

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

.form-group label {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
}

.cta-submit {
    padding: 16px 32px;
    background-color: var(--secondary-color);
    color: var(--white);
    border: none;
    border-radius: 6px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
    margin-top: 16px;
}

.cta-submit:hover {
    background-color: #1e4663;
}

.final-cta {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 100px 32px;
}

.final-cta h2 {
    font-size: 38px;
    margin-bottom: 24px;
    text-align: center;
}

.final-cta p {
    font-size: 18px;
    text-align: center;
    margin-bottom: 32px;
}

.cta-inline {
    display: inline-block;
    padding: 16px 48px;
    background-color: var(--accent-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 6px;
    font-size: 17px;
    font-weight: 600;
    transition: background-color 0.3s;
    margin: 0 auto;
    display: block;
    width: fit-content;
}

.cta-inline:hover {
    background-color: #d17d3a;
}

.scientific-references {
    background-color: var(--light-bg);
    padding: 60px 32px;
}

.scientific-references h3 {
    font-size: 24px;
    margin-bottom: 24px;
    color: var(--primary-color);
}

.reference-item {
    font-size: 14px;
    margin-bottom: 12px;
    line-height: 1.6;
}

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

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

.site-footer {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 60px 32px 24px;
}

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

.footer-section {
    flex: 1;
}

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 16px;
    color: var(--accent-color);
}

.footer-section p {
    font-size: 14px;
    line-height: 1.7;
    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;
    font-size: 14px;
    opacity: 0.9;
    transition: opacity 0.3s;
}

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

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto 32px;
    padding: 24px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    font-size: 13px;
    line-height: 1.6;
    opacity: 0.8;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--white);
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
    padding: 24px 32px;
    z-index: 10000;
    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: 32px;
}

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

.cookie-content a {
    color: var(--secondary-color);
}

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

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

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

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

.cookie-btn.reject {
    background-color: #e0e0e0;
    color: var(--text-color);
}

.cookie-btn.reject:hover {
    background-color: #d0d0d0;
}

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

.header-content h1 {
    font-size: 48px;
    margin-bottom: 16px;
}

.header-content p {
    font-size: 20px;
    opacity: 0.9;
}

.about-story {
    background-color: var(--white);
}

.about-story img {
    width: 100%;
    margin-bottom: 48px;
    border-radius: 8px;
    object-fit: cover;
    background-color: #e8eaed;
}

.about-story h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: var(--primary-color);
}

.about-story p {
    font-size: 17px;
    margin-bottom: 20px;
    line-height: 1.8;
}

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

.values-section h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 64px;
    color: var(--primary-color);
}

.values-grid {
    display: flex;
    gap: 32px;
}

.value-card {
    flex: 1;
    background-color: var(--white);
    padding: 40px;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.value-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: var(--secondary-color);
}

.value-card p {
    font-size: 16px;
    line-height: 1.7;
}

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

.process-section {
    background-color: var(--light-bg);
}

.process-section h2 {
    font-size: 38px;
    margin-bottom: 48px;
    text-align: center;
    color: var(--primary-color);
}

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

.process-step {
    background-color: var(--white);
    padding: 32px;
    border-radius: 8px;
    box-shadow: var(--shadow);
    display: flex;
    gap: 24px;
}

.step-number {
    font-size: 36px;
    font-weight: 700;
    color: var(--accent-color);
    min-width: 60px;
}

.process-step h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--secondary-color);
}

.process-step p {
    font-size: 16px;
    line-height: 1.7;
}

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

.commitment-section h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 48px;
    color: var(--primary-color);
}

.commitment-list {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.commitment-item {
    background-color: var(--light-bg);
    padding: 28px;
    border-left: 4px solid var(--secondary-color);
    border-radius: 4px;
}

.commitment-item p {
    font-size: 17px;
    line-height: 1.7;
}

.cta-about {
    background-color: var(--light-bg);
    padding: 80px 32px;
}

.cta-about h2 {
    font-size: 36px;
    margin-bottom: 24px;
    text-align: center;
    color: var(--primary-color);
}

.cta-about p {
    font-size: 17px;
    text-align: center;
    margin-bottom: 32px;
}

.services-intro {
    background-color: var(--light-bg);
}

.intro-large {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.services-detailed {
    background-color: var(--white);
}

.service-detail {
    padding: 80px 32px;
    border-bottom: 1px solid var(--border-color);
}

.service-detail:last-child {
    border-bottom: none;
}

.service-detail.reverse .service-content {
    flex-direction: row-reverse;
}

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

.service-info {
    flex: 1;
}

.service-info h2 {
    font-size: 36px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.service-price {
    font-size: 32px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 24px;
}

.service-info p {
    font-size: 17px;
    margin-bottom: 20px;
    line-height: 1.8;
}

.service-features {
    list-style: none;
    margin-bottom: 32px;
}

.service-features li {
    padding: 12px 0 12px 32px;
    position: relative;
    font-size: 16px;
    line-height: 1.6;
}

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

.service-visual {
    flex: 1;
    background-color: #e8eaed;
}

.service-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.services-guarantee {
    background-color: var(--light-bg);
    padding: 80px 32px;
}

.services-guarantee h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 48px;
    color: var(--primary-color);
}

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

.guarantee-item {
    flex: 1;
    background-color: var(--white);
    padding: 32px;
    border-radius: 8px;
    text-align: center;
    box-shadow: var(--shadow);
}

.guarantee-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--secondary-color);
}

.guarantee-item p {
    font-size: 15px;
    line-height: 1.7;
}

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

.contact-layout {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 64px;
}

.contact-info-block {
    flex: 1;
}

.contact-info-block h2 {
    font-size: 32px;
    margin-bottom: 32px;
    color: var(--primary-color);
}

.info-group {
    margin-bottom: 32px;
}

.info-group h3 {
    font-size: 18px;
    margin-bottom: 12px;
    color: var(--secondary-color);
}

.info-group p {
    font-size: 16px;
    line-height: 1.7;
}

.contact-map-placeholder {
    flex: 1;
    position: relative;
    background-color: #e8eaed;
    border-radius: 8px;
    overflow: hidden;
    min-height: 400px;
}

.contact-map-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
}

.map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px;
    background: linear-gradient(to top, rgba(26, 35, 50, 0.95), transparent);
    color: var(--white);
}

.map-overlay p {
    font-size: 16px;
    font-weight: 600;
}

.contact-questions {
    background-color: var(--light-bg);
    padding: 80px 32px;
}

.contact-questions h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 48px;
    color: var(--primary-color);
}

.faq-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
}

.faq-item {
    flex: 1 1 calc(50% - 16px);
    background-color: var(--white);
    padding: 32px;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

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

.faq-item p {
    font-size: 15px;
    line-height: 1.7;
}

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

.contact-cta h2 {
    font-size: 32px;
    margin-bottom: 16px;
    text-align: center;
    color: var(--primary-color);
}

.contact-cta p {
    font-size: 17px;
    text-align: center;
    margin-bottom: 32px;
}

.thanks-hero {
    background: linear-gradient(135deg, var(--success-color), #388e3c);
    padding: 120px 32px;
    text-align: center;
    color: var(--white);
}

.thanks-content {
    max-width: 700px;
    margin: 0 auto;
}

.thanks-icon {
    font-size: 80px;
    margin-bottom: 24px;
}

.thanks-hero h1 {
    font-size: 42px;
    margin-bottom: 24px;
}

.thanks-message {
    font-size: 18px;
    line-height: 1.7;
    opacity: 0.95;
}

.selected-service {
    margin-top: 24px;
    font-size: 17px;
    font-weight: 600;
    padding: 16px;
    background-color: rgba(255, 255, 255, 0.15);
    border-radius: 6px;
}

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

.thanks-next-steps h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 48px;
    color: var(--primary-color);
}

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

.step-card {
    flex: 1;
    background-color: var(--light-bg);
    padding: 32px;
    border-radius: 8px;
    text-align: center;
}

.step-num {
    font-size: 48px;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 16px;
}

.step-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.step-card p {
    font-size: 15px;
    line-height: 1.7;
}

.thanks-explore {
    background-color: var(--light-bg);
    padding: 80px 32px;
}

.thanks-explore h2 {
    font-size: 32px;
    margin-bottom: 16px;
    text-align: center;
    color: var(--primary-color);
}

.thanks-explore p {
    font-size: 17px;
    text-align: center;
    margin-bottom: 32px;
}

.explore-links {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.explore-link {
    display: inline-block;
    padding: 12px 24px;
    background-color: var(--white);
    color: var(--secondary-color);
    text-decoration: none;
    border-radius: 6px;
    border: 1px solid var(--secondary-color);
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s;
}

.explore-link:hover {
    background-color: var(--secondary-color);
    color: var(--white);
}

.legal-content {
    background-color: var(--white);
    padding: 60px 32px;
}

.legal-text h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.legal-text h3 {
    font-size: 22px;
    margin-top: 28px;
    margin-bottom: 12px;
    color: var(--secondary-color);
}

.legal-text h4 {
    font-size: 18px;
    margin-top: 20px;
    margin-bottom: 10px;
    color: var(--text-color);
}

.legal-text p {
    font-size: 15px;
    margin-bottom: 16px;
    line-height: 1.8;
}

.legal-text ul,
.legal-text ol {
    margin-bottom: 20px;
    padding-left: 32px;
}

.legal-text li {
    font-size: 15px;
    margin-bottom: 10px;
    line-height: 1.7;
}

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

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

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
    font-size: 14px;
}

.cookies-table thead {
    background-color: var(--light-bg);
}

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

.cookies-table th {
    font-weight: 600;
    color: var(--primary-color);
}

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

    .nav-toggle {
        display: flex;
    }

    .nav-links.active {
        display: flex;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        background-color: var(--white);
        padding: 16px 32px;
        box-shadow: var(--shadow);
        gap: 16px;
    }

    .hero-content h1 {
        font-size: 36px;
    }

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

    .split-layout,
    .split-layout.reverse {
        flex-direction: column;
        gap: 32px;
    }

    .insight-cards {
        flex-direction: column;
        gap: 32px;
    }

    .trust-grid {
        flex-direction: column;
        gap: 24px;
    }

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

    .benefit-small {
        flex: 1 1 100%;
    }

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

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

    .footer-content {
        flex-direction: column;
        gap: 32px;
    }

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

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

    .service-content,
    .service-detail.reverse .service-content {
        flex-direction: column;
    }

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

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

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

    .faq-item {
        flex: 1 1 100%;
    }

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

@media (max-width: 640px) {
    .narrow-content,
    .centered-content {
        padding: 60px 20px;
    }

    .hero-content h1 {
        font-size: 28px;
    }

    .page-header {
        padding: 80px 20px;
    }

    .header-content h1 {
        font-size: 36px;
    }

    .form-container {
        padding: 32px 24px;
    }
}