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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: #2C2C2C;
    background-color: #FAFAFA;
}

.ad-disclosure {
    background-color: #FFE5B4;
    color: #6B4423;
    text-align: center;
    padding: 8px 15px;
    font-size: 13px;
    font-weight: 500;
    border-bottom: 1px solid #E8D4A8;
}

.floating-nav {
    position: sticky;
    top: 0;
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    padding: 18px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
}

.nav-brand {
    font-size: 22px;
    font-weight: 700;
    color: #8B7355;
}

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

.nav-links a {
    text-decoration: none;
    color: #4A4A4A;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #8B7355;
}

.hero-overlay {
    position: relative;
    height: 600px;
    overflow: hidden;
}

.hero-image-container {
    width: 100%;
    height: 100%;
}

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

.hero-text-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #FFFFFF;
    width: 85%;
    max-width: 900px;
    background-color: rgba(0, 0, 0, 0.45);
    padding: 50px 40px;
    border-radius: 8px;
}

.hero-text-overlay h1 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 20px;
}

.hero-text-overlay p {
    font-size: 22px;
    font-weight: 400;
    line-height: 1.5;
}

.story-intro {
    padding: 90px 20px;
    background-color: #F5F0EA;
}

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

.lead-text {
    font-size: 24px;
    line-height: 1.6;
    font-weight: 500;
    color: #3A3A3A;
    margin-bottom: 25px;
}

.narrow-content p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #4A4A4A;
}

.problem-amplification {
    padding: 80px 20px;
    background-color: #FFFFFF;
}

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

.text-block {
    flex: 1;
}

.text-block h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #2C2C2C;
}

.text-block p {
    font-size: 18px;
    margin-bottom: 18px;
    line-height: 1.7;
    color: #4A4A4A;
}

.image-block {
    flex: 1;
    min-height: 400px;
}

.image-block img {
    width: 100%;
    height: 100%;
    border-radius: 6px;
}

.insight-reveal {
    padding: 90px 20px;
    background-color: #8B7355;
    color: #FFFFFF;
}

.centered-insight {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.centered-insight h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.3;
}

.centered-insight p {
    font-size: 20px;
    line-height: 1.7;
    margin-bottom: 22px;
}

.science-section {
    padding: 80px 20px;
    background-color: #F9F9F9;
}

.science-section h2 {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #2C2C2C;
}

.science-section p {
    font-size: 18px;
    margin-bottom: 20px;
    line-height: 1.7;
    color: #4A4A4A;
}

.science-section a {
    color: #8B7355;
    text-decoration: none;
    font-weight: 600;
}

.science-section a:hover {
    text-decoration: underline;
}

.testimonial-inline {
    padding: 80px 20px;
    background-color: #E8DED3;
    display: flex;
    gap: 50px;
    justify-content: center;
    flex-wrap: wrap;
}

.testimonial-card {
    background-color: #FFFFFF;
    padding: 35px 30px;
    border-radius: 8px;
    max-width: 480px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.testimonial-text {
    font-size: 18px;
    font-style: italic;
    line-height: 1.6;
    color: #3A3A3A;
    margin-bottom: 18px;
}

.testimonial-author {
    font-size: 15px;
    font-weight: 600;
    color: #8B7355;
}

.benefits-reveal {
    padding: 90px 20px;
    background-color: #FFFFFF;
}

.stacked-benefits {
    max-width: 900px;
    margin: 0 auto;
}

.stacked-benefits h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 50px;
    text-align: center;
    color: #2C2C2C;
}

.benefit-block {
    margin-bottom: 50px;
}

.benefit-block h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 18px;
    color: #8B7355;
}

.benefit-block p {
    font-size: 18px;
    line-height: 1.7;
    color: #4A4A4A;
    margin-bottom: 15px;
}

.ingredient-list {
    background-color: #F5F0EA;
    padding: 25px;
    border-radius: 6px;
    margin-top: 20px;
}

.ingredient-list h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #2C2C2C;
}

.ingredient-list ul {
    list-style-position: inside;
    padding-left: 0;
}

.ingredient-list li {
    font-size: 17px;
    line-height: 1.8;
    color: #4A4A4A;
    margin-bottom: 8px;
}

.services-pricing {
    padding: 90px 20px;
    background-color: #F9F9F9;
}

.pricing-intro {
    text-align: center;
    margin-bottom: 60px;
}

.pricing-intro h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #2C2C2C;
}

.pricing-intro p {
    font-size: 19px;
    color: #5A5A5A;
}

.pricing-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    max-width: 1300px;
    margin: 0 auto;
}

.price-card {
    background-color: #FFFFFF;
    padding: 40px 30px;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    flex: 1;
    min-width: 280px;
    max-width: 380px;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.price-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.price-card.featured {
    border: 3px solid #8B7355;
}

.badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background-color: #8B7355;
    color: #FFFFFF;
    padding: 6px 18px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
}

.price-card h3 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #2C2C2C;
}

.service-description {
    font-size: 16px;
    line-height: 1.6;
    color: #5A5A5A;
    margin-bottom: 25px;
    min-height: 80px;
}

.price {
    font-size: 36px;
    font-weight: 700;
    color: #8B7355;
    margin-bottom: 25px;
}

.select-service {
    width: 100%;
    background-color: #8B7355;
    color: #FFFFFF;
    border: none;
    padding: 14px 20px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.select-service:hover {
    background-color: #6F5D47;
}

.form-section {
    padding: 90px 20px;
    background-color: #E8DED3;
}

.form-container {
    max-width: 650px;
    margin: 0 auto;
    background-color: #FFFFFF;
    padding: 50px 40px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.form-container h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #2C2C2C;
    text-align: center;
}

.form-container > p {
    text-align: center;
    font-size: 17px;
    color: #5A5A5A;
    margin-bottom: 35px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #2C2C2C;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    font-size: 16px;
    border: 1px solid #D0D0D0;
    border-radius: 6px;
    font-family: inherit;
}

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

.submit-btn {
    width: 100%;
    background-color: #8B7355;
    color: #FFFFFF;
    border: none;
    padding: 16px 20px;
    font-size: 18px;
    font-weight: 700;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.trust-signals {
    padding: 80px 20px;
    background-color: #F5F0EA;
}

.trust-signals h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 40px;
    text-align: center;
    color: #2C2C2C;
}

.trust-grid {
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 1100px;
    margin: 0 auto;
}

.trust-item {
    flex: 1;
    min-width: 280px;
    max-width: 340px;
}

.trust-item h4 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #8B7355;
}

.trust-item p {
    font-size: 17px;
    line-height: 1.6;
    color: #4A4A4A;
}

.final-cta {
    padding: 100px 20px;
    background-color: #8B7355;
    text-align: center;
}

.cta-content h2 {
    font-size: 42px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 20px;
    color: #F5F0EA;
    margin-bottom: 35px;
}

.cta-button {
    display: inline-block;
    background-color: #FFFFFF;
    color: #8B7355;
    padding: 16px 40px;
    font-size: 18px;
    font-weight: 700;
    border-radius: 6px;
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.cta-button:hover {
    background-color: #E8DED3;
    color: #6F5D47;
}

.main-footer {
    background-color: #2C2C2C;
    color: #D0D0D0;
    padding: 60px 20px 20px;
}

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

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

.footer-section h4 {
    font-size: 20px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 18px;
}

.footer-section p {
    font-size: 15px;
    line-height: 1.6;
}

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

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

.footer-section ul li a {
    color: #D0D0D0;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
}

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

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto 30px;
    padding: 25px;
    background-color: #3A3A3A;
    border-radius: 6px;
}

.footer-disclaimer p {
    font-size: 14px;
    line-height: 1.7;
    color: #D0D0D0;
}

.footer-references {
    max-width: 1200px;
    margin: 0 auto 30px;
}

.footer-references h4 {
    font-size: 18px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 15px;
}

.footer-references ol {
    padding-left: 20px;
}

.footer-references li {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 8px;
}

.footer-references a {
    color: #A8D5BA;
    text-decoration: none;
}

.footer-references a:hover {
    text-decoration: underline;
}

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

.footer-bottom p {
    font-size: 14px;
    color: #A0A0A0;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(44, 44, 44, 0.98);
    color: #FFFFFF;
    padding: 25px 20px;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.2);
    z-index: 10000;
    display: none;
}

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

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

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

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

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

.cookie-btn {
    padding: 10px 25px;
    font-size: 15px;
    font-weight: 600;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.cookie-btn.accept {
    background-color: #8B7355;
    color: #FFFFFF;
}

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

.cookie-btn.reject {
    background-color: #5A5A5A;
    color: #FFFFFF;
}

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

.page-hero {
    position: relative;
    height: 400px;
    overflow: hidden;
}

.page-hero img {
    width: 100%;
    height: 100%;
}

.page-hero-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.page-hero-text h1 {
    font-size: 52px;
    font-weight: 700;
    color: #FFFFFF;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.6);
}

.about-content {
    padding: 80px 20px;
}

.about-content h2 {
    font-size: 32px;
    font-weight: 700;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #8B7355;
}

.values-list {
    list-style: none;
    margin-top: 25px;
}

.values-list li {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 18px;
    padding-left: 0;
}

.team-image {
    margin: 40px 0;
    border-radius: 8px;
    overflow: hidden;
}

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

.cta-secondary {
    padding: 60px 20px;
    background-color: #F5F0EA;
    text-align: center;
}

.cta-box {
    max-width: 600px;
    margin: 0 auto;
}

.cta-box h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #2C2C2C;
}

.cta-button-secondary {
    display: inline-block;
    background-color: #8B7355;
    color: #FFFFFF;
    padding: 14px 35px;
    font-size: 17px;
    font-weight: 600;
    border-radius: 6px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.cta-button-secondary:hover {
    background-color: #6F5D47;
}

.services-intro {
    padding: 60px 20px;
    background-color: #F9F9F9;
}

.services-detailed {
    padding: 40px 20px 80px;
    background-color: #FFFFFF;
}

.service-item-full {
    max-width: 1200px;
    margin: 0 auto 60px;
    display: flex;
    gap: 50px;
    align-items: center;
}

.service-item-full.reverse {
    flex-direction: row-reverse;
}

.service-content-left,
.service-content-right {
    flex: 1;
}

.service-content-left h2,
.service-content-right h2 {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #2C2C2C;
}

.service-tagline {
    font-size: 18px;
    color: #8B7355;
    font-style: italic;
    margin-bottom: 25px;
}

.service-content-left h3,
.service-content-right h3 {
    font-size: 22px;
    font-weight: 700;
    margin-top: 25px;
    margin-bottom: 12px;
    color: #4A4A4A;
}

.service-content-left ul,
.service-content-right ul {
    list-style-position: inside;
    margin-bottom: 20px;
}

.service-content-left li,
.service-content-right li {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 8px;
    color: #4A4A4A;
}

.service-content-left p,
.service-content-right p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 15px;
    color: #4A4A4A;
}

.service-image-right,
.service-image-left {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    min-height: 400px;
}

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

.price-block {
    margin-top: 30px;
    padding-top: 25px;
    border-top: 2px solid #E8DED3;
}

.price-label {
    font-size: 16px;
    font-weight: 600;
    color: #5A5A5A;
    margin-bottom: 8px;
}

.price-amount {
    font-size: 38px;
    font-weight: 700;
    color: #8B7355;
    margin-bottom: 20px;
}

.service-cta {
    display: inline-block;
    background-color: #8B7355;
    color: #FFFFFF;
    padding: 14px 30px;
    font-size: 17px;
    font-weight: 600;
    border-radius: 6px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

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

.service-guarantee {
    padding: 60px 20px;
    background-color: #F5F0EA;
}

.service-guarantee h2 {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #2C2C2C;
}

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

.contact-grid {
    max-width: 1200px;
    margin: 0 auto 60px;
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #2C2C2C;
}

.contact-info > p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 35px;
    color: #4A4A4A;
}

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

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

.contact-item h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #8B7355;
}

.contact-item p {
    font-size: 17px;
    line-height: 1.7;
    color: #4A4A4A;
}

.response-time {
    background-color: #F5F0EA;
    padding: 20px;
    border-radius: 6px;
}

.response-time p {
    font-size: 16px;
    line-height: 1.6;
    color: #4A4A4A;
    margin: 0;
}

.contact-image {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    min-height: 500px;
}

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

.contact-extra-info {
    max-width: 1200px;
    margin: 0 auto;
}

.contact-extra-info h2 {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 35px;
    color: #2C2C2C;
}

.info-blocks {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

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

.info-block h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #8B7355;
}

.info-block p {
    font-size: 17px;
    line-height: 1.7;
    color: #4A4A4A;
}

.info-block a {
    color: #8B7355;
    text-decoration: none;
    font-weight: 600;
}

.info-block a:hover {
    text-decoration: underline;
}

.thanks-page {
    padding: 100px 20px;
    background-color: #F9F9F9;
}

.thanks-container {
    max-width: 750px;
    margin: 0 auto;
    background-color: #FFFFFF;
    padding: 60px 40px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.thanks-icon {
    margin-bottom: 30px;
}

.thanks-container h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #2C2C2C;
}

.thanks-message {
    font-size: 20px;
    color: #5A5A5A;
    margin-bottom: 30px;
}

.thanks-details {
    background-color: #F5F0EA;
    padding: 30px;
    border-radius: 6px;
    margin-bottom: 40px;
}

.thanks-details p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 12px;
    color: #4A4A4A;
}

.thanks-details p:last-child {
    margin-bottom: 0;
}

.next-steps {
    margin-bottom: 40px;
}

.next-steps h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #2C2C2C;
}

.steps-grid {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.step-item {
    flex: 1;
    min-width: 200px;
    max-width: 220px;
}

.step-number {
    width: 50px;
    height: 50px;
    background-color: #8B7355;
    color: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto 15px;
}

.step-item h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #2C2C2C;
}

.step-item p {
    font-size: 15px;
    line-height: 1.6;
    color: #5A5A5A;
}

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

.btn-primary,
.btn-secondary {
    padding: 14px 30px;
    font-size: 17px;
    font-weight: 600;
    border-radius: 6px;
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.btn-primary {
    background-color: #8B7355;
    color: #FFFFFF;
}

.btn-primary:hover {
    background-color: #6F5D47;
}

.btn-secondary {
    background-color: #E8DED3;
    color: #8B7355;
}

.btn-secondary:hover {
    background-color: #D4C4B4;
}

.thanks-support p {
    font-size: 16px;
    margin-bottom: 8px;
    color: #4A4A4A;
}

.legal-page {
    padding: 80px 20px;
    background-color: #FAFAFA;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    background-color: #FFFFFF;
    padding: 60px 50px;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.legal-content h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #2C2C2C;
}

.legal-intro {
    font-size: 16px;
    color: #7A7A7A;
    margin-bottom: 40px;
}

.legal-content h2 {
    font-size: 28px;
    font-weight: 700;
    margin-top: 40px;
    margin-bottom: 18px;
    color: #8B7355;
}

.legal-content h3 {
    font-size: 22px;
    font-weight: 700;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #4A4A4A;
}

.legal-content h4 {
    font-size: 18px;
    font-weight: 700;
    margin-top: 20px;
    margin-bottom: 12px;
    color: #5A5A5A;
}

.legal-content p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 18px;
    color: #4A4A4A;
}

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

.legal-content li {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 10px;
    color: #4A4A4A;
}

.legal-content a {
    color: #8B7355;
    text-decoration: none;
    font-weight: 600;
}

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

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

    .hero-text-overlay p {
        font-size: 18px;
    }

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

    .nav-links {
        flex-direction: column;
        gap: 15px;
    }

    .pricing-cards {
        flex-direction: column;
        align-items: center;
    }

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

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

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