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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #ffffff;
}

.ad-notice {
    background-color: #f8f9fa;
    text-align: center;
    padding: 8px 20px;
    font-size: 12px;
    color: #6c757d;
    border-bottom: 1px solid #e9ecef;
}

.main-nav {
    background-color: #ffffff;
    border-bottom: 1px solid #e9ecef;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #1a5490;
    text-decoration: none;
}

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

.nav-links a {
    color: #2c3e50;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #1a5490;
}

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

.hero-content {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #f8f9fa;
}

.hero-content h1 {
    font-size: 48px;
    line-height: 1.2;
    color: #1a1a1a;
    margin-bottom: 30px;
    font-weight: 700;
}

.hero-content p {
    font-size: 20px;
    color: #4a5568;
    margin-bottom: 40px;
    max-width: 550px;
}

.hero-image {
    flex: 1;
    background-color: #e9ecef;
}

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

.cta-button {
    display: inline-block;
    padding: 16px 40px;
    background-color: #1a5490;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    border-radius: 4px;
    transition: background-color 0.3s ease;
    align-self: flex-start;
}

.cta-button:hover {
    background-color: #154070;
}

.intro-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
}

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

.intro-image {
    flex: 1;
    background-color: #e9ecef;
}

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

.intro-content {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.intro-content h2 {
    font-size: 36px;
    line-height: 1.3;
    color: #1a1a1a;
    margin-bottom: 30px;
}

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

.services-preview {
    max-width: 1400px;
    margin: 100px auto;
    padding: 0 60px;
}

.services-header {
    text-align: center;
    margin-bottom: 60px;
}

.services-header h2 {
    font-size: 42px;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.services-header p {
    font-size: 20px;
    color: #6c757d;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 50px;
}

.service-card {
    flex: 1 1 calc(50% - 15px);
    padding: 40px;
    background-color: #f8f9fa;
    border-radius: 8px;
    min-width: 300px;
}

.service-card h3 {
    font-size: 24px;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.service-card p {
    font-size: 16px;
    color: #4a5568;
    margin-bottom: 25px;
    line-height: 1.7;
}

.price {
    display: block;
    font-size: 32px;
    font-weight: 700;
    color: #1a5490;
}

.services-cta {
    text-align: center;
    margin-top: 50px;
}

.services-cta a {
    display: inline-block;
    padding: 14px 35px;
    background-color: transparent;
    color: #1a5490;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    border: 2px solid #1a5490;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.services-cta a:hover {
    background-color: #1a5490;
    color: #ffffff;
}

.trust-split {
    display: flex;
    max-width: 1400px;
    margin: 100px auto;
}

.trust-content {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #f8f9fa;
}

.trust-content h2 {
    font-size: 36px;
    color: #1a1a1a;
    margin-bottom: 35px;
}

.trust-list {
    list-style: none;
    margin-bottom: 30px;
}

.trust-list li {
    font-size: 18px;
    color: #4a5568;
    margin-bottom: 20px;
    padding-left: 30px;
    position: relative;
}

.trust-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #1a5490;
    font-weight: 700;
    font-size: 20px;
}

.trust-note {
    font-size: 18px;
    color: #2c3e50;
    font-style: italic;
}

.trust-image {
    flex: 1;
    background-color: #e9ecef;
}

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

.testimonials-section {
    max-width: 1400px;
    margin: 100px auto;
    padding: 80px 60px;
    background-color: #1a5490;
    color: #ffffff;
}

.testimonials-section h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
}

.testimonials-layout {
    display: flex;
    gap: 40px;
}

.testimonial {
    flex: 1;
    padding: 35px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
}

.testimonial p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 25px;
}

.testimonial-author {
    font-size: 15px;
    opacity: 0.9;
}

.consultation-form-section {
    max-width: 1400px;
    margin: 100px auto;
    padding: 0 60px;
}

.form-split {
    display: flex;
    gap: 60px;
}

.form-intro {
    flex: 1;
}

.form-intro h2 {
    font-size: 38px;
    color: #1a1a1a;
    margin-bottom: 25px;
}

.form-intro p {
    font-size: 18px;
    color: #4a5568;
    margin-bottom: 20px;
}

.form-disclaimer {
    font-size: 15px;
    color: #6c757d;
    font-style: italic;
}

.form-container {
    flex: 1;
}

.consultation-form {
    background-color: #f8f9fa;
    padding: 50px;
    border-radius: 8px;
}

.consultation-form label {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 10px;
}

.consultation-form input,
.consultation-form select {
    width: 100%;
    padding: 14px;
    font-size: 16px;
    border: 1px solid #ced4da;
    border-radius: 4px;
    margin-bottom: 25px;
    font-family: inherit;
}

.consultation-form input:focus,
.consultation-form select:focus {
    outline: none;
    border-color: #1a5490;
}

.submit-button {
    width: 100%;
    padding: 16px;
    background-color: #1a5490;
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-button:hover {
    background-color: #154070;
}

.site-footer {
    background-color: #2c3e50;
    color: #ffffff;
    padding: 60px 0 0;
    margin-top: 100px;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px 50px;
    display: flex;
    gap: 60px;
}

.footer-column {
    flex: 1;
}

.footer-column h3,
.footer-column h4 {
    margin-bottom: 20px;
    color: #ffffff;
}

.footer-column p,
.footer-column a {
    font-size: 15px;
    color: #cbd5e0;
    margin-bottom: 10px;
    display: block;
}

.footer-column a {
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-disclaimer {
    max-width: 1400px;
    margin: 0 auto;
    padding: 30px 60px;
    border-top: 1px solid rgba(255,255,255,0.1);
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-disclaimer p {
    font-size: 13px;
    color: #cbd5e0;
    line-height: 1.8;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding: 25px 60px;
    text-align: center;
}

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

.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 25px;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    z-index: 2000;
    display: none;
}

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

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

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

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

.cookie-accept,
.cookie-reject {
    padding: 12px 30px;
    font-size: 15px;
    font-weight: 600;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-accept {
    background-color: #1a5490;
    color: #ffffff;
}

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

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

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

.cookie-link {
    color: #ffffff;
    text-decoration: underline;
    font-size: 14px;
    white-space: nowrap;
}

.page-hero {
    max-width: 1400px;
    margin: 0 auto;
    padding: 100px 60px;
    text-align: center;
}

.page-hero h1 {
    font-size: 52px;
    color: #1a1a1a;
    margin-bottom: 25px;
}

.page-hero p {
    font-size: 22px;
    color: #6c757d;
    max-width: 800px;
    margin: 0 auto;
}

.about-split {
    display: flex;
    max-width: 1400px;
    margin: 80px auto;
}

.about-image {
    flex: 1;
    background-color: #e9ecef;
}

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

.about-content {
    flex: 1;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-content h2 {
    font-size: 34px;
    color: #1a1a1a;
    margin-bottom: 25px;
}

.about-content p {
    font-size: 17px;
    color: #4a5568;
    margin-bottom: 20px;
    line-height: 1.8;
}

.values-section {
    max-width: 1400px;
    margin: 100px auto;
    padding: 0 60px;
}

.values-section h2 {
    font-size: 42px;
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 60px;
}

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

.value-card {
    flex: 1 1 calc(50% - 15px);
    padding: 40px;
    background-color: #f8f9fa;
    border-radius: 8px;
    min-width: 300px;
}

.value-card h3 {
    font-size: 24px;
    color: #1a1a1a;
    margin-bottom: 20px;
}

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

.approach-split {
    display: flex;
    max-width: 1400px;
    margin: 100px auto;
}

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

.approach-content {
    flex: 1;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #f8f9fa;
}

.approach-content h2 {
    font-size: 34px;
    color: #1a1a1a;
    margin-bottom: 30px;
}

.approach-content p {
    font-size: 17px;
    color: #4a5568;
    margin-bottom: 30px;
}

.process-list {
    list-style: none;
    counter-reset: process-counter;
}

.process-list li {
    font-size: 17px;
    color: #4a5568;
    margin-bottom: 25px;
    padding-left: 45px;
    position: relative;
    counter-increment: process-counter;
}

.process-list li:before {
    content: counter(process-counter);
    position: absolute;
    left: 0;
    top: 0;
    width: 30px;
    height: 30px;
    background-color: #1a5490;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 15px;
}

.process-list strong {
    color: #2c3e50;
}

.approach-image {
    flex: 1;
    background-color: #e9ecef;
}

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

.team-section {
    max-width: 1400px;
    margin: 100px auto;
    padding: 0 60px;
}

.team-section h2 {
    font-size: 42px;
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 30px;
}

.team-intro {
    font-size: 18px;
    color: #4a5568;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 50px;
    line-height: 1.8;
}

.team-image-full {
    width: 100%;
    background-color: #e9ecef;
}

.team-image-full img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.impact-section {
    max-width: 1400px;
    margin: 100px auto;
    padding: 80px 60px;
    background-color: #f8f9fa;
}

.impact-section h2 {
    font-size: 42px;
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 60px;
}

.stats-layout {
    display: flex;
    gap: 60px;
    justify-content: center;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 56px;
    font-weight: 700;
    color: #1a5490;
    margin-bottom: 15px;
}

.stat-label {
    display: block;
    font-size: 18px;
    color: #4a5568;
}

.cta-split {
    display: flex;
    max-width: 1400px;
    margin: 100px auto;
}

.cta-content {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #1a5490;
    color: #ffffff;
}

.cta-content h2 {
    font-size: 38px;
    margin-bottom: 25px;
}

.cta-content p {
    font-size: 18px;
    margin-bottom: 40px;
    max-width: 500px;
}

.cta-button-large {
    display: inline-block;
    padding: 18px 45px;
    background-color: #ffffff;
    color: #1a5490;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    border-radius: 4px;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.cta-button-large:hover {
    background-color: #f8f9fa;
}

.cta-image {
    flex: 1;
    background-color: #e9ecef;
}

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

.services-intro-split {
    display: flex;
    max-width: 1400px;
    margin: 80px auto;
}

.services-intro-content {
    flex: 1;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.services-intro-content h2 {
    font-size: 34px;
    color: #1a1a1a;
    margin-bottom: 30px;
}

.included-list {
    list-style: none;
    margin-bottom: 30px;
}

.included-list li {
    font-size: 17px;
    color: #4a5568;
    margin-bottom: 18px;
    padding-left: 30px;
    position: relative;
}

.included-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #1a5490;
    font-weight: 700;
    font-size: 20px;
}

.services-note {
    font-size: 16px;
    color: #6c757d;
    font-style: italic;
}

.services-intro-image {
    flex: 1;
    background-color: #e9ecef;
}

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

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

.services-detailed h2 {
    font-size: 42px;
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 80px;
}

.service-detail-card {
    display: flex;
    margin-bottom: 60px;
    gap: 50px;
}

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

.service-detail-content {
    flex: 1.5;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-detail-content h3 {
    font-size: 28px;
    color: #1a1a1a;
    margin-bottom: 20px;
}

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

.service-price {
    display: inline-block;
    font-size: 36px;
    font-weight: 700;
    color: #1a5490;
    margin-top: 20px;
}

.service-detail-image {
    flex: 1;
    background-color: #e9ecef;
    border-radius: 8px;
    overflow: hidden;
}

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

.additional-services {
    max-width: 1400px;
    margin: 100px auto;
    padding: 80px 60px;
    background-color: #f8f9fa;
}

.additional-services h2 {
    font-size: 42px;
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 60px;
}

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

.additional-card {
    flex: 1;
    padding: 40px;
    background-color: #ffffff;
    border-radius: 8px;
}

.additional-card h3 {
    font-size: 22px;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.additional-card p {
    font-size: 16px;
    color: #4a5568;
    margin-bottom: 25px;
    line-height: 1.7;
}

.additional-price {
    display: block;
    font-size: 24px;
    font-weight: 700;
    color: #1a5490;
}

.consultation-cta-split {
    display: flex;
    max-width: 1400px;
    margin: 100px auto;
}

.consultation-cta-image {
    flex: 1;
    background-color: #e9ecef;
}

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

.consultation-cta-content {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #f8f9fa;
}

.consultation-cta-content h2 {
    font-size: 36px;
    color: #1a1a1a;
    margin-bottom: 25px;
}

.consultation-cta-content p {
    font-size: 18px;
    color: #4a5568;
    margin-bottom: 40px;
}

.contact-split {
    display: flex;
    max-width: 1400px;
    margin: 80px auto;
}

.contact-info {
    flex: 1;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-info h2 {
    font-size: 36px;
    color: #1a1a1a;
    margin-bottom: 40px;
}

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

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

.contact-item h3 {
    font-size: 20px;
    color: #1a5490;
    margin-bottom: 12px;
}

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

.contact-note {
    padding: 25px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.contact-note p {
    font-size: 16px;
    color: #4a5568;
    line-height: 1.8;
}

.contact-map-placeholder {
    flex: 1;
    background-color: #e9ecef;
}

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

.access-info {
    max-width: 1400px;
    margin: 100px auto;
    padding: 0 60px;
}

.access-info h2 {
    font-size: 42px;
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 60px;
}

.access-split {
    display: flex;
    gap: 50px;
}

.access-content {
    flex: 1.5;
}

.access-content h3 {
    font-size: 26px;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.access-content p {
    font-size: 17px;
    color: #4a5568;
    margin-bottom: 25px;
    line-height: 1.8;
}

.access-list {
    list-style: none;
    margin-bottom: 40px;
}

.access-list li {
    font-size: 17px;
    color: #4a5568;
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
}

.access-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #1a5490;
    font-weight: 700;
}

.access-list strong {
    color: #2c3e50;
}

.access-image {
    flex: 1;
    background-color: #e9ecef;
    border-radius: 8px;
    overflow: hidden;
}

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

.consultation-info-section {
    max-width: 1400px;
    margin: 100px auto;
    padding: 0 60px;
}

.consultation-info-section h2 {
    font-size: 42px;
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 60px;
}

.consultation-steps {
    display: flex;
    gap: 30px;
}

.step-card {
    flex: 1;
    padding: 40px;
    background-color: #f8f9fa;
    border-radius: 8px;
    position: relative;
}

.step-number {
    display: inline-block;
    width: 50px;
    height: 50px;
    background-color: #1a5490;
    color: #ffffff;
    border-radius: 50%;
    font-size: 24px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.step-card h3 {
    font-size: 22px;
    color: #1a1a1a;
    margin-bottom: 18px;
}

.step-card p {
    font-size: 16px;
    color: #4a5568;
    line-height: 1.7;
}

.faq-section {
    max-width: 1400px;
    margin: 100px auto;
    padding: 80px 60px;
    background-color: #f8f9fa;
}

.faq-section h2 {
    font-size: 42px;
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 60px;
}

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

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

.faq-item h3 {
    font-size: 20px;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.faq-item p {
    font-size: 17px;
    color: #4a5568;
    line-height: 1.8;
}

.contact-cta {
    max-width: 1400px;
    margin: 100px auto;
    padding: 80px 60px;
    text-align: center;
    background-color: #1a5490;
    color: #ffffff;
}

.contact-cta h2 {
    font-size: 42px;
    margin-bottom: 25px;
}

.contact-cta p {
    font-size: 20px;
    margin-bottom: 40px;
}

.thanks-hero {
    max-width: 1400px;
    margin: 0 auto;
    padding: 100px 60px;
    text-align: center;
    background-color: #f8f9fa;
}

.thanks-content h1 {
    font-size: 52px;
    color: #1a5490;
    margin-bottom: 20px;
}

.thanks-message {
    font-size: 24px;
    color: #2c3e50;
    margin-bottom: 40px;
}

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

.thanks-details p {
    font-size: 18px;
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 15px;
}

.service-selected {
    font-weight: 600;
    color: #1a5490;
}

.next-steps-section {
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 60px;
}

.next-steps-section h2 {
    font-size: 42px;
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 60px;
}

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

.next-step {
    flex: 1;
    padding: 40px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.next-step h3 {
    font-size: 22px;
    color: #1a5490;
    margin-bottom: 18px;
}

.next-step p {
    font-size: 16px;
    color: #4a5568;
    line-height: 1.7;
}

.thanks-info-split {
    display: flex;
    max-width: 1400px;
    margin: 100px auto;
}

.thanks-info-image {
    flex: 1;
    background-color: #e9ecef;
}

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

.thanks-info-content {
    flex: 1;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.thanks-info-content h2 {
    font-size: 34px;
    color: #1a1a1a;
    margin-bottom: 25px;
}

.thanks-info-content p {
    font-size: 17px;
    color: #4a5568;
    margin-bottom: 25px;
    line-height: 1.8;
}

.preparation-list {
    list-style: none;
    margin-bottom: 25px;
}

.preparation-list li {
    font-size: 17px;
    color: #4a5568;
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
}

.preparation-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #1a5490;
    font-weight: 700;
    font-size: 24px;
}

.preparation-note {
    font-size: 15px;
    color: #6c757d;
    font-style: italic;
}

.thanks-resources {
    max-width: 1400px;
    margin: 100px auto;
    padding: 80px 60px;
    background-color: #f8f9fa;
}

.thanks-resources h2 {
    font-size: 42px;
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 60px;
}

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

.resource-card {
    flex: 1;
    padding: 40px;
    background-color: #ffffff;
    border-radius: 8px;
    text-align: center;
}

.resource-card h3 {
    font-size: 22px;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.resource-card p {
    font-size: 16px;
    color: #4a5568;
    margin-bottom: 25px;
    line-height: 1.7;
}

.resource-card a {
    display: inline-block;
    padding: 12px 30px;
    background-color: #1a5490;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.resource-card a:hover {
    background-color: #154070;
}

.thanks-contact {
    max-width: 1400px;
    margin: 80px auto;
    padding: 60px;
    text-align: center;
}

.thanks-contact h2 {
    font-size: 36px;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.thanks-contact p {
    font-size: 18px;
    color: #4a5568;
}

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

.legal-page h1 {
    font-size: 48px;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.legal-updated {
    font-size: 15px;
    color: #6c757d;
    margin-bottom: 50px;
}

.legal-content h2 {
    font-size: 32px;
    color: #1a1a1a;
    margin-top: 50px;
    margin-bottom: 25px;
}

.legal-content h3 {
    font-size: 24px;
    color: #2c3e50;
    margin-top: 35px;
    margin-bottom: 20px;
}

.legal-content p {
    font-size: 16px;
    color: #4a5568;
    line-height: 1.9;
    margin-bottom: 20px;
}

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

.legal-content li {
    font-size: 16px;
    color: #4a5568;
    line-height: 1.9;
    margin-bottom: 12px;
}

.legal-content a {
    color: #1a5490;
    text-decoration: underline;
}

.legal-content a:hover {
    color: #154070;
}

.legal-content strong {
    color: #2c3e50;
    font-weight: 600;
}

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

.cookies-table th,
.cookies-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #e9ecef;
}

.cookies-table th {
    background-color: #f8f9fa;
    font-weight: 600;
    color: #2c3e50;
}

.cookies-table td {
    font-size: 15px;
    color: #4a5568;
}

@media (max-width: 768px) {
    .hero-split,
    .intro-split,
    .trust-split,
    .about-split,
    .approach-split,
    .cta-split,
    .services-intro-split,
    .service-detail-card,
    .consultation-cta-split,
    .contact-split,
    .access-split,
    .thanks-info-split,
    .form-split {
        flex-direction: column;
    }

    .service-detail-card.reverse,
    .intro-split.reverse,
    .approach-split.reverse {
        flex-direction: column;
    }

    .services-grid,
    .values-grid,
    .additional-grid,
    .consultation-steps,
    .next-steps-grid,
    .resources-grid,
    .stats-layout,
    .testimonials-layout {
        flex-direction: column;
    }

    .nav-container {
        padding: 0 20px;
    }

    .hero-content,
    .intro-content,
    .trust-content,
    .about-content,
    .approach-content,
    .cta-content,
    .services-intro-content,
    .consultation-cta-content,
    .contact-info,
    .thanks-info-content {
        padding: 40px 30px;
    }

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

    .page-hero {
        padding: 60px 30px;
    }

    .page-hero h1 {
        font-size: 38px;
    }

    .services-preview,
    .testimonials-section,
    .consultation-form-section,
    .values-section,
    .team-section,
    .impact-section,
    .services-detailed,
    .additional-services,
    .access-info,
    .consultation-info-section,
    .faq-section,
    .contact-cta,
    .next-steps-section,
    .thanks-resources,
    .thanks-contact,
    .legal-page {
        padding-left: 30px;
        padding-right: 30px;
    }

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

    .footer-content {
        flex-direction: column;
        gap: 30px;
        padding-left: 30px;
        padding-right: 30px;
    }

    .footer-disclaimer {
        padding-left: 30px;
        padding-right: 30px;
    }
}