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

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

.ad-disclosure {
    background-color: #f8f9fa;
    border-bottom: 1px solid #dee2e6;
    padding: 8px 0;
    text-align: center;
    font-size: 13px;
    color: #6c757d;
}

.header-split {
    background-color: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.brand-logo {
    font-size: 28px;
    font-weight: 700;
    color: #2563eb;
}

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

.main-nav a {
    text-decoration: none;
    color: #4b5563;
    font-weight: 500;
    font-size: 16px;
    transition: color 0.3s ease;
}

.main-nav a:hover {
    color: #2563eb;
}

.hero-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 40px;
    gap: 60px;
    align-items: center;
}

.hero-content-left {
    flex: 1;
}

.hero-content-left h2 {
    font-size: 48px;
    line-height: 1.2;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 24px;
}

.hero-content-left p {
    font-size: 20px;
    color: #6b7280;
    margin-bottom: 32px;
    line-height: 1.7;
}

.cta-primary {
    display: inline-block;
    background-color: #2563eb;
    color: #ffffff;
    padding: 16px 36px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 18px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.cta-primary:hover {
    background-color: #1d4ed8;
    transform: translateY(-2px);
}

.hero-image-right {
    flex: 1;
    background-color: #f3f4f6;
    border-radius: 12px;
    overflow: hidden;
}

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

.split-info-section {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    padding: 100px 40px;
    gap: 80px;
    align-items: center;
    background-color: #f9fafb;
}

.split-image-left {
    flex: 1;
    background-color: #e5e7eb;
    border-radius: 12px;
    overflow: hidden;
}

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

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

.split-content-right h3 {
    font-size: 36px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 24px;
    line-height: 1.3;
}

.split-content-right p {
    font-size: 18px;
    color: #4b5563;
    margin-bottom: 20px;
    line-height: 1.7;
}

.link-inline {
    color: #2563eb;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    display: inline-block;
    margin-top: 12px;
    transition: color 0.3s ease;
}

.link-inline:hover {
    color: #1d4ed8;
    text-decoration: underline;
}

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

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

.section-header-center h3 {
    font-size: 42px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 16px;
}

.section-header-center p {
    font-size: 20px;
    color: #6b7280;
}

.services-grid-split {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.service-card-split {
    display: flex;
    gap: 50px;
    align-items: center;
    background-color: #ffffff;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

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

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

.service-image-container img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.service-details {
    flex: 1;
}

.service-details h4 {
    font-size: 28px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 16px;
}

.service-details p {
    font-size: 17px;
    color: #4b5563;
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-price {
    display: block;
    font-size: 24px;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 20px;
}

.select-service-btn {
    background-color: #10b981;
    color: #ffffff;
    border: none;
    padding: 14px 28px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.select-service-btn:hover {
    background-color: #059669;
    transform: translateY(-2px);
}

.form-section-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    padding: 100px 40px;
    gap: 70px;
    background-color: #f9fafb;
}

.form-intro-left {
    flex: 1;
}

.form-intro-left h3 {
    font-size: 38px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 24px;
    line-height: 1.3;
}

.form-intro-left p {
    font-size: 18px;
    color: #4b5563;
    line-height: 1.7;
    margin-bottom: 32px;
}

.form-benefits {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.benefit-icon {
    background-color: #10b981;
    color: #ffffff;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    flex-shrink: 0;
}

.benefit-item span:last-child {
    font-size: 17px;
    color: #374151;
}

.form-container-right {
    flex: 1;
    background-color: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

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

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

.form-group label {
    font-weight: 600;
    color: #374151;
    font-size: 15px;
}

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

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

.form-group textarea {
    resize: vertical;
}

.submit-btn {
    background-color: #2563eb;
    color: #ffffff;
    border: none;
    padding: 16px 32px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.submit-btn:hover {
    background-color: #1d4ed8;
    transform: translateY(-2px);
}

.disclaimer-section {
    background-color: #fef3c7;
    padding: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

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

.disclaimer-content h4 {
    font-size: 22px;
    font-weight: 700;
    color: #92400e;
    margin-bottom: 16px;
}

.disclaimer-content p {
    font-size: 15px;
    color: #78350f;
    line-height: 1.7;
}

.footer-split {
    background-color: #1f2937;
    color: #d1d5db;
    padding: 60px 40px 30px;
}

.footer-columns {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-col h5 {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
}

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

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

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

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid #374151;
    text-align: center;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1f2937;
    color: #ffffff;
    padding: 24px;
    box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    display: none;
}

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

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

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

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

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

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

.cookie-btn.accept {
    background-color: #10b981;
    color: #ffffff;
}

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

.cookie-btn.reject {
    background-color: #6b7280;
    color: #ffffff;
}

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

.page-hero-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 40px;
    gap: 60px;
    align-items: center;
}

.page-hero-content {
    flex: 1;
}

.page-hero-content h2 {
    font-size: 46px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 20px;
    line-height: 1.2;
}

.page-hero-content p {
    font-size: 20px;
    color: #6b7280;
    line-height: 1.6;
}

.page-hero-image {
    flex: 1;
    background-color: #f3f4f6;
    border-radius: 12px;
    overflow: hidden;
}

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

.about-content-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 40px;
    gap: 70px;
    align-items: center;
}

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

.about-text-left h3 {
    font-size: 38px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 24px;
}

.about-text-left p {
    font-size: 18px;
    color: #4b5563;
    line-height: 1.7;
    margin-bottom: 20px;
}

.about-image-right {
    flex: 1;
    background-color: #f3f4f6;
    border-radius: 12px;
    overflow: hidden;
}

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

.values-section-split {
    background-color: #f9fafb;
    padding: 80px 40px;
}

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

.values-intro h3 {
    font-size: 40px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 16px;
}

.values-intro p {
    font-size: 19px;
    color: #6b7280;
}

.values-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.value-card {
    flex: 1;
    min-width: 280px;
    background-color: #ffffff;
    padding: 36px;
    border-radius: 10px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.value-card h4 {
    font-size: 24px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 16px;
}

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

.process-section-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 40px;
    gap: 70px;
    align-items: center;
}

.process-image-left {
    flex: 1;
    background-color: #f3f4f6;
    border-radius: 12px;
    overflow: hidden;
}

.process-image-left img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.process-content-right {
    flex: 1;
}

.process-content-right h3 {
    font-size: 38px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 24px;
}

.process-content-right p {
    font-size: 18px;
    color: #4b5563;
    line-height: 1.7;
    margin-bottom: 20px;
}

.team-section {
    background-color: #f9fafb;
    padding: 80px 40px;
}

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

.team-intro-center h3 {
    font-size: 40px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 20px;
}

.team-intro-center p {
    font-size: 19px;
    color: #4b5563;
    line-height: 1.7;
}

.page-intro-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 40px;
    gap: 60px;
    align-items: center;
}

.intro-content-left {
    flex: 1;
}

.intro-content-left h2 {
    font-size: 46px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 20px;
    line-height: 1.2;
}

.intro-content-left p {
    font-size: 19px;
    color: #6b7280;
    line-height: 1.7;
}

.intro-visual-right {
    flex: 1;
    background-color: #f3f4f6;
    border-radius: 12px;
    overflow: hidden;
}

.intro-visual-right img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.services-detailed {
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 40px 100px;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.service-detail-card {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

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

.service-detail-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
    padding-bottom: 20px;
    border-bottom: 2px solid #e5e7eb;
}

.service-detail-header h3 {
    font-size: 32px;
    font-weight: 700;
    color: #1f2937;
}

.price-tag {
    font-size: 28px;
    font-weight: 700;
    color: #2563eb;
}

.service-detail-split {
    display: flex;
    gap: 50px;
    align-items: flex-start;
}

.service-detail-content {
    flex: 1;
}

.service-detail-content h4 {
    font-size: 24px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 20px;
}

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

.service-features li {
    font-size: 17px;
    color: #4b5563;
    line-height: 1.7;
    padding-left: 28px;
    position: relative;
    margin-bottom: 12px;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: 700;
    font-size: 18px;
}

.service-detail-content p {
    font-size: 17px;
    color: #4b5563;
    line-height: 1.7;
    margin-bottom: 24px;
}

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

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

.cta-services {
    background-color: #2563eb;
    padding: 80px 40px;
}

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

.cta-content-center h3 {
    font-size: 42px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
}

.cta-content-center p {
    font-size: 20px;
    color: #dbeafe;
    margin-bottom: 32px;
    line-height: 1.6;
}

.cta-button-large {
    display: inline-block;
    background-color: #ffffff;
    color: #2563eb;
    padding: 18px 40px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 19px;
    transition: transform 0.2s ease;
}

.cta-button-large:hover {
    transform: translateY(-2px);
}

.contact-hero-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 40px;
    gap: 60px;
    align-items: center;
}

.contact-intro-left {
    flex: 1;
}

.contact-intro-left h2 {
    font-size: 46px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 20px;
    line-height: 1.2;
}

.contact-intro-left p {
    font-size: 19px;
    color: #6b7280;
    line-height: 1.7;
}

.contact-visual-right {
    flex: 1;
    background-color: #f3f4f6;
    border-radius: 12px;
    overflow: hidden;
}

.contact-visual-right img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

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

.contact-details-grid {
    display: flex;
    gap: 40px;
}

.contact-card {
    flex: 1;
    background-color: #f9fafb;
    padding: 36px;
    border-radius: 10px;
}

.contact-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 16px;
}

.contact-card p {
    font-size: 17px;
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 8px;
}

.contact-email {
    color: #4b5563;
    font-weight: 600;
}

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

.contact-directions-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 40px;
    gap: 70px;
    align-items: flex-start;
    background-color: #f9fafb;
}

.directions-content-left {
    flex: 1;
}

.directions-content-left h3 {
    font-size: 36px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 20px;
}

.directions-content-left h4 {
    font-size: 22px;
    font-weight: 700;
    color: #1f2937;
    margin-top: 28px;
    margin-bottom: 16px;
}

.directions-content-left p {
    font-size: 17px;
    color: #4b5563;
    line-height: 1.7;
    margin-bottom: 20px;
}

.transport-list {
    list-style: none;
    margin-bottom: 24px;
}

.transport-list li {
    font-size: 17px;
    color: #4b5563;
    line-height: 1.7;
    padding-left: 28px;
    position: relative;
    margin-bottom: 12px;
}

.transport-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #2563eb;
    font-weight: 700;
}

.directions-image-right {
    flex: 1;
    background-color: #f3f4f6;
    border-radius: 12px;
    overflow: hidden;
}

.directions-image-right img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.contact-cta-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 40px;
}

.contact-cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.contact-cta-content h3 {
    font-size: 38px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 20px;
}

.contact-cta-content p {
    font-size: 18px;
    color: #6b7280;
    line-height: 1.7;
    margin-bottom: 32px;
}

.cta-button-contact {
    display: inline-block;
    background-color: #2563eb;
    color: #ffffff;
    padding: 16px 36px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 18px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.cta-button-contact:hover {
    background-color: #1d4ed8;
    transform: translateY(-2px);
}

.thanks-hero {
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 40px;
}

.thanks-content-center {
    text-align: center;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background-color: #10b981;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    margin: 0 auto 32px;
}

.thanks-content-center h2 {
    font-size: 42px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 24px;
    line-height: 1.2;
}

.thanks-message {
    font-size: 20px;
    color: #6b7280;
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto;
}

.thanks-info-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 40px;
    gap: 70px;
    align-items: flex-start;
    background-color: #f9fafb;
}

.thanks-details-left {
    flex: 1;
}

.thanks-details-left h3 {
    font-size: 36px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 32px;
}

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

.step-item {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.step-number {
    width: 48px;
    height: 48px;
    background-color: #2563eb;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h4 {
    font-size: 22px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 12px;
}

.step-content p {
    font-size: 17px;
    color: #4b5563;
    line-height: 1.7;
}

.thanks-visual-right {
    flex: 1;
    background-color: #f3f4f6;
    border-radius: 12px;
    overflow: hidden;
}

.thanks-visual-right img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.thanks-additional {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 40px;
}

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

.thanks-additional-content h3 {
    font-size: 36px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 20px;
    text-align: center;
}

.thanks-additional-content > p {
    font-size: 18px;
    color: #6b7280;
    line-height: 1.7;
    text-align: center;
    margin-bottom: 40px;
}

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

.thanks-link-card {
    flex: 1;
    background-color: #f9fafb;
    padding: 32px;
    border-radius: 10px;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.thanks-link-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.thanks-link-card h4 {
    font-size: 24px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 12px;
}

.thanks-link-card p {
    font-size: 16px;
    color: #6b7280;
    line-height: 1.6;
}

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

.legal-container h2 {
    font-size: 42px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 16px;
}

.legal-update {
    font-size: 16px;
    color: #6b7280;
    margin-bottom: 40px;
    font-style: italic;
}

.legal-section {
    margin-bottom: 40px;
}

.legal-section h3 {
    font-size: 28px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 20px;
}

.legal-section h4 {
    font-size: 22px;
    font-weight: 700;
    color: #1f2937;
    margin-top: 24px;
    margin-bottom: 16px;
}

.legal-section p {
    font-size: 16px;
    color: #4b5563;
    line-height: 1.8;
    margin-bottom: 16px;
}

.legal-list {
    margin: 16px 0 16px 24px;
}

.legal-list li {
    font-size: 16px;
    color: #4b5563;
    line-height: 1.8;
    margin-bottom: 10px;
}

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

.cookies-table thead {
    background-color: #f3f4f6;
}

.cookies-table th {
    padding: 12px;
    text-align: left;
    font-size: 15px;
    font-weight: 700;
    color: #1f2937;
    border-bottom: 2px solid #e5e7eb;
}

.cookies-table td {
    padding: 12px;
    font-size: 15px;
    color: #4b5563;
    border-bottom: 1px solid #e5e7eb;
}

@media (max-width: 768px) {
    .hero-split,
    .split-info-section,
    .form-section-split,
    .service-card-split,
    .page-hero-split,
    .about-content-split,
    .process-section-split,
    .page-intro-split,
    .service-detail-split,
    .contact-hero-split,
    .contact-details-grid,
    .contact-directions-split,
    .thanks-info-split,
    .thanks-links {
        flex-direction: column;
    }

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

    .hero-content-left h2,
    .page-hero-content h2,
    .intro-content-left h2,
    .contact-intro-left h2 {
        font-size: 36px;
    }

    .section-header-center h3 {
        font-size: 32px;
    }

    .header-container {
        padding: 0 20px;
        flex-direction: column;
        height: auto;
        padding-top: 20px;
        padding-bottom: 20px;
    }

    .main-nav {
        flex-wrap: wrap;
        gap: 20px;
    }

    .footer-columns {
        flex-direction: column;
        gap: 30px;
    }

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

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

    .value-card {
        min-width: 100%;
    }
}