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

:root {
    --primary-color: #2c5f7d;
    --secondary-color: #e67e22;
    --accent-color: #27ae60;
    --dark-text: #2c3e50;
    --light-text: #7f8c8d;
    --bg-light: #ecf0f1;
    --bg-white: #ffffff;
    --border-color: #bdc3c7;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--dark-text);
    background-color: var(--bg-white);
}

.ad-disclosure {
    background-color: #fff3cd;
    color: #856404;
    text-align: center;
    padding: 8px 15px;
    font-size: 13px;
    border-bottom: 1px solid #ffeeba;
}

.main-nav {
    background-color: var(--bg-white);
    padding: 20px 0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

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

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

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

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

.hero-split {
    display: flex;
    min-height: 600px;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.hero-content {
    flex: 1;
    padding: 60px 40px;
}

.hero-content h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.hero-lead {
    font-size: 20px;
    color: var(--light-text);
    margin-bottom: 30px;
    line-height: 1.8;
}

.hero-image {
    flex: 1;
    background-color: var(--bg-light);
}

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

.cta-primary {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 15px 35px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.cta-primary:hover {
    background-color: #1d4a63;
}

.cta-secondary {
    display: inline-block;
    background-color: var(--accent-color);
    color: white;
    padding: 15px 35px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.cta-secondary:hover {
    background-color: #1e8449;
}

.intro-story {
    display: flex;
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 20px;
    gap: 50px;
    align-items: center;
}

.story-left {
    flex: 0 0 45%;
    background-color: var(--bg-light);
}

.story-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.story-right {
    flex: 1;
}

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

.story-right p {
    margin-bottom: 20px;
    font-size: 18px;
    line-height: 1.7;
}

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

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

.insight-content h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.insight-content > p {
    text-align: center;
    font-size: 18px;
    margin-bottom: 50px;
    color: var(--light-text);
}

.insight-grid {
    display: flex;
    gap: 30px;
}

.insight-card {
    flex: 1;
    background-color: white;
    padding: 35px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

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

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

.benefits-reveal {
    display: flex;
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 20px;
    gap: 50px;
    align-items: center;
}

.benefits-left {
    flex: 1;
}

.benefits-left h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.benefits-list {
    list-style: none;
    margin-bottom: 35px;
}

.benefits-list li {
    padding: 15px 0 15px 40px;
    position: relative;
    font-size: 17px;
    line-height: 1.6;
}

.benefits-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
    font-size: 24px;
}

.benefits-right {
    flex: 0 0 40%;
    background-color: var(--bg-light);
}

.benefits-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonials-inline {
    padding: 80px 20px;
    background-color: white;
}

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

.testimonial-row {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 30px;
}

.testimonial-card {
    flex: 1;
    background-color: var(--bg-light);
    padding: 30px;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.7;
}

.testimonial-author {
    font-weight: 600;
    color: var(--primary-color);
    font-style: normal;
}

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

.pricing-intro {
    max-width: 800px;
    margin: 0 auto 50px;
    text-align: center;
}

.pricing-intro h2 {
    font-size: 38px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.pricing-intro p {
    font-size: 18px;
    color: var(--light-text);
}

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

.price-card {
    flex: 1;
    background-color: white;
    padding: 40px 30px;
    border-radius: 8px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
    text-align: center;
}

.price-card.featured {
    border: 3px solid var(--primary-color);
    transform: scale(1.05);
}

.price-card h3 {
    font-size: 26px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.price-amount {
    font-size: 32px;
    font-weight: bold;
    color: var(--secondary-color);
    margin-bottom: 25px;
}

.price-features {
    list-style: none;
    text-align: left;
    margin-bottom: 30px;
}

.price-features li {
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
    font-size: 15px;
}

.select-service {
    width: 100%;
    background-color: var(--primary-color);
    color: white;
    padding: 15px;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.select-service:hover {
    background-color: #1d4a63;
}

.form-section {
    display: flex;
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 20px;
    gap: 50px;
}

.form-split-left {
    flex: 0 0 40%;
}

.form-split-left h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.form-split-left p {
    font-size: 17px;
    margin-bottom: 30px;
    line-height: 1.7;
}

.form-split-left img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
    background-color: var(--bg-light);
}

.form-split-right {
    flex: 1;
}

.contact-form {
    background-color: var(--bg-light);
    padding: 40px;
    border-radius: 8px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-size: 15px;
    font-family: inherit;
}

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

.btn-submit {
    width: 100%;
    background-color: var(--accent-color);
    color: white;
    padding: 15px;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.trust-section {
    padding: 60px 20px;
    background-color: white;
}

.trust-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.trust-container h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.trust-container p {
    font-size: 16px;
    line-height: 1.8;
}

.trust-container a {
    color: var(--primary-color);
    text-decoration: none;
}

.trust-container a:hover {
    text-decoration: underline;
}

.disclaimer-section {
    padding: 50px 20px;
    background-color: #fff8dc;
    border-top: 2px solid #ffd700;
    border-bottom: 2px solid #ffd700;
}

.disclaimer-container {
    max-width: 900px;
    margin: 0 auto;
}

.disclaimer-container h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--dark-text);
}

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

.main-footer {
    background-color: var(--dark-text);
    color: white;
    padding: 50px 20px 20px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto 30px;
    display: flex;
    gap: 50px;
}

.footer-col {
    flex: 1;
}

.footer-col h4 {
    margin-bottom: 20px;
    font-size: 18px;
}

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

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

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

.footer-col a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: white;
}

.footer-col .references {
    font-size: 12px;
}

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(44, 62, 80, 0.95);
    color: white;
    padding: 20px;
    z-index: 9999;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 14px;
}

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

.btn-accept,
.btn-reject {
    padding: 10px 25px;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.3s;
}

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

.btn-accept:hover {
    opacity: 0.9;
}

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

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

.page-header {
    text-align: center;
    padding: 80px 20px 40px;
    background-color: var(--bg-light);
}

.page-header h1 {
    font-size: 42px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.page-header p {
    font-size: 18px;
    color: var(--light-text);
}

.services-detailed {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
}

.service-block {
    display: flex;
    gap: 50px;
    margin-bottom: 80px;
    align-items: center;
}

.service-block.reverse {
    flex-direction: row-reverse;
}

.service-visual {
    flex: 0 0 45%;
    background-color: var(--bg-light);
}

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

.service-info {
    flex: 1;
}

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

.service-price {
    font-size: 28px;
    color: var(--secondary-color);
    font-weight: bold;
    margin-bottom: 20px;
}

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

.service-info h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--dark-text);
}

.service-info ul {
    list-style: none;
    margin-bottom: 30px;
}

.service-info ul li {
    padding: 10px 0 10px 30px;
    position: relative;
    font-size: 15px;
}

.service-info ul li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.btn-service {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.btn-service:hover {
    background-color: #1d4a63;
}

.services-cta {
    text-align: center;
    padding: 60px 20px;
    background-color: var(--bg-light);
}

.services-cta h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

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

.about-intro-split {
    display: flex;
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
    gap: 50px;
    align-items: center;
}

.about-intro-text {
    flex: 1;
}

.about-intro-text h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.lead-text {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 25px;
    color: var(--dark-text);
}

.about-intro-text p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.about-intro-image {
    flex: 0 0 35%;
    background-color: var(--bg-light);
}

.about-intro-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

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

.about-philosophy h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 50px;
    color: var(--primary-color);
}

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

.philosophy-item {
    flex: 1;
    background-color: white;
    padding: 35px;
    border-radius: 8px;
}

.philosophy-item h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

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

.credentials-section {
    display: flex;
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 20px;
    gap: 50px;
    align-items: center;
}

.credentials-left {
    flex: 1;
}

.credentials-left h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.credentials-left p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 25px;
}

.credentials-list {
    list-style: none;
}

.credentials-list li {
    padding: 12px 0 12px 35px;
    position: relative;
    font-size: 16px;
}

.credentials-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
    font-size: 22px;
}

.credentials-right {
    flex: 0 0 40%;
    background-color: var(--bg-light);
}

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

.journey-timeline {
    padding: 80px 20px;
    background-color: var(--bg-light);
}

.journey-timeline h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 60px;
    color: var(--primary-color);
}

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

.timeline-item {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
}

.timeline-year {
    flex: 0 0 80px;
    font-size: 24px;
    font-weight: bold;
    color: var(--primary-color);
}

.timeline-content {
    flex: 1;
    background-color: white;
    padding: 25px;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

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

.timeline-content p {
    font-size: 15px;
    line-height: 1.7;
}

.values-section {
    padding: 80px 20px;
}

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

.values-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 30px;
}

.value-card {
    flex: 1;
    background-color: var(--bg-light);
    padding: 35px;
    border-radius: 8px;
}

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

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

.about-cta {
    text-align: center;
    padding: 80px 20px;
    background-color: var(--bg-light);
}

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

.about-cta p {
    font-size: 18px;
    margin-bottom: 30px;
    color: var(--light-text);
}

.contact-header {
    text-align: center;
    padding: 80px 20px 40px;
    background-color: var(--bg-light);
}

.contact-header h1 {
    font-size: 42px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.contact-header p {
    font-size: 18px;
    color: var(--light-text);
}

.contact-layout {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
    display: flex;
    gap: 50px;
}

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

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

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

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

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

.email-display {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 18px;
}

.note {
    font-size: 14px;
    color: var(--light-text);
    font-style: italic;
    margin-top: 8px;
}

.contact-visual {
    flex: 0 0 40%;
}

.contact-visual img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
    background-color: var(--bg-light);
    margin-bottom: 30px;
}

.quick-contact-card {
    background-color: var(--bg-light);
    padding: 30px;
    border-radius: 8px;
}

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

.quick-contact-card p {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.btn-quick {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.btn-quick:hover {
    background-color: #1d4a63;
}

.faq-section {
    padding: 60px 20px;
    background-color: var(--bg-light);
}

.faq-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: var(--primary-color);
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background-color: white;
    padding: 30px;
    margin-bottom: 20px;
    border-radius: 8px;
}

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

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

.contact-map-placeholder {
    padding: 60px 20px;
}

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

.contact-map-placeholder p {
    text-align: center;
    font-size: 17px;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

.thanks-container {
    display: flex;
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
    gap: 50px;
    align-items: center;
}

.thanks-content {
    flex: 1;
}

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

.thanks-content h1 {
    font-size: 42px;
    margin-bottom: 20px;
    text-align: center;
    color: var(--accent-color);
}

.thanks-message {
    font-size: 18px;
    line-height: 1.7;
    text-align: center;
    margin-bottom: 30px;
}

.service-confirmation {
    text-align: center;
    margin-bottom: 40px;
}

.service-selected {
    font-size: 18px;
    padding: 15px;
    background-color: var(--bg-light);
    border-radius: 5px;
}

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

.next-steps h2 {
    font-size: 28px;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.steps-grid {
    display: flex;
    gap: 25px;
}

.step {
    flex: 1;
    text-align: center;
}

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

.step h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--dark-text);
}

.step p {
    font-size: 14px;
    line-height: 1.6;
}

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

.btn-primary {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.btn-primary:hover {
    background-color: #1d4a63;
}

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

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

.thanks-visual {
    flex: 0 0 35%;
    background-color: var(--bg-light);
}

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

.thanks-social-proof {
    padding: 60px 20px;
    background-color: var(--bg-light);
    text-align: center;
}

.thanks-social-proof h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.thanks-social-proof p {
    font-size: 17px;
    margin-bottom: 40px;
    color: var(--light-text);
}

.quick-stats {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    gap: 50px;
    justify-content: center;
}

.stat {
    flex: 0 0 auto;
}

.stat-number {
    font-size: 48px;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    color: var(--light-text);
}

.legal-page {
    max-width: 900px;
    margin: 60px auto;
    padding: 0 20px;
}

.legal-page h1 {
    font-size: 40px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.legal-intro {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 40px;
    color: var(--light-text);
}

.legal-content h2 {
    font-size: 26px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.legal-content h3 {
    font-size: 20px;
    margin-top: 25px;
    margin-bottom: 15px;
    color: var(--dark-text);
}

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

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

.legal-content ul li {
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 8px;
}

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

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

.legal-date {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
    font-style: italic;
    color: var(--light-text);
}

@media (max-width: 768px) {
    .hero-split,
    .intro-story,
    .benefits-reveal,
    .form-section,
    .about-intro-split,
    .credentials-section,
    .service-block,
    .contact-layout,
    .thanks-container {
        flex-direction: column;
    }

    .insight-grid,
    .testimonial-row,
    .pricing-cards,
    .philosophy-grid,
    .values-container,
    .steps-grid,
    .quick-stats {
        flex-direction: column;
    }

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

    .hero-content h1,
    .about-intro-text h1,
    .contact-header h1 {
        font-size: 32px;
    }

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