* {
    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;
    text-align: center;
    padding: 8px 20px;
    font-size: 13px;
    color: #6c757d;
    border-bottom: 1px solid #e9ecef;
}

.nav-asymmetric {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 50px;
    background-color: #ffffff;
    border-bottom: 1px solid #e9ecef;
    position: relative;
}

.nav-brand {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
}

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

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

.nav-links a:hover {
    color: #3498db;
}

.hero-offset {
    display: flex;
    align-items: center;
    padding: 80px 50px 80px 120px;
    gap: 60px;
    background-color: #f8f9fa;
}

.hero-content-left {
    flex: 1;
    max-width: 550px;
}

.hero-content-left h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 25px;
    color: #1a252f;
}

.hero-content-left p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #4a5568;
}

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

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

.cta-primary {
    display: inline-block;
    padding: 15px 35px;
    background-color: #3498db;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.cta-primary:hover {
    background-color: #2980b9;
}

.intro-asymmetric {
    display: flex;
    padding: 100px 50px 100px 80px;
    gap: 80px;
    align-items: flex-start;
}

.intro-block-offset {
    flex: 1.2;
    padding-left: 40px;
}

.intro-block-offset h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #1a252f;
}

.intro-block-offset p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #4a5568;
}

.intro-visual {
    flex: 0.8;
    overflow: hidden;
    border-radius: 8px;
    background-color: #e9ecef;
}

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

.services-irregular {
    padding: 100px 50px;
    background-color: #f8f9fa;
}

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

.services-grid-offset {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.service-card {
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    width: calc(33.333% - 30px);
    min-width: 320px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.service-card.card-1 {
    margin-top: 0;
}

.service-card.card-2 {
    margin-top: 30px;
}

.service-card.card-3 {
    margin-top: 15px;
}

.service-card.card-4 {
    margin-top: 40px;
}

.service-card.card-5 {
    margin-top: 20px;
}

.service-card.card-6 {
    margin-top: 35px;
}

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

.service-card h3 {
    padding: 20px 25px 10px;
    font-size: 24px;
    color: #1a252f;
}

.service-card p {
    padding: 0 25px 15px;
    font-size: 16px;
    color: #4a5568;
}

.service-card .price {
    font-size: 28px;
    font-weight: 700;
    color: #3498db;
    padding: 10px 25px;
}

.btn-select-service {
    width: calc(100% - 50px);
    margin: 0 25px 25px;
    padding: 12px;
    background-color: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-select-service:hover {
    background-color: #2980b9;
}

.form-section-offset {
    display: flex;
    padding: 100px 80px 100px 120px;
    gap: 70px;
    align-items: center;
}

.form-container-asymmetric {
    flex: 1;
}

.form-container-asymmetric h2 {
    font-size: 38px;
    margin-bottom: 20px;
    color: #1a252f;
}

.form-container-asymmetric p {
    font-size: 17px;
    margin-bottom: 35px;
    color: #4a5568;
}

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

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

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

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

.btn-submit {
    width: 100%;
    padding: 15px;
    background-color: #27ae60;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.form-visual-offset {
    flex: 0.8;
    overflow: hidden;
    border-radius: 8px;
    background-color: #e9ecef;
}

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

.trust-block {
    padding: 100px 80px;
    background-color: #ffffff;
}

.trust-content-irregular {
    max-width: 1100px;
    margin: 0 auto;
}

.trust-content-irregular h2 {
    font-size: 40px;
    margin-bottom: 50px;
    text-align: center;
    color: #1a252f;
}

.trust-points {
    display: flex;
    gap: 50px;
    justify-content: center;
}

.trust-item {
    flex: 1;
    max-width: 350px;
}

.trust-item h4 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #1a252f;
}

.trust-item p {
    font-size: 16px;
    color: #4a5568;
}

.testimonials-scattered {
    padding: 100px 50px;
    background-color: #f8f9fa;
}

.testimonials-scattered h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 60px;
    color: #1a252f;
}

.testimonial-layout {
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
}

.testimonial {
    background-color: #ffffff;
    padding: 35px;
    border-radius: 8px;
    max-width: 380px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.testimonial-1 {
    margin-top: 0;
}

.testimonial-2 {
    margin-top: 30px;
}

.testimonial-3 {
    margin-top: 15px;
}

.testimonial p {
    font-size: 17px;
    font-style: italic;
    color: #2c3e50;
    margin-bottom: 15px;
}

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

.disclaimer-section {
    padding: 50px 80px;
    background-color: #fff3cd;
    border-top: 2px solid #ffc107;
    border-bottom: 2px solid #ffc107;
}

.disclaimer-section p {
    font-size: 15px;
    color: #856404;
    max-width: 1200px;
    margin: 0 auto;
    line-height: 1.7;
}

.footer-asymmetric {
    background-color: #1a252f;
    color: #ffffff;
    padding: 60px 50px 30px;
}

.footer-content {
    display: flex;
    gap: 80px;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto 40px;
}

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

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

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

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

.footer-block ul li a {
    color: #cbd5e0;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-block ul li a:hover {
    color: #ffffff;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #2c3e50;
}

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

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

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

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

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

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

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

.btn-cookie-accept {
    background-color: #27ae60;
    color: #ffffff;
}

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

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

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

.about-hero-offset {
    padding: 80px 100px 80px 150px;
    background-color: #f8f9fa;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.about-content-block h1 {
    font-size: 46px;
    margin-bottom: 25px;
    color: #1a252f;
}

.about-content-block p {
    font-size: 18px;
    color: #4a5568;
    max-width: 800px;
}

.about-hero-offset img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 8px;
    background-color: #e9ecef;
}

.mission-irregular {
    display: flex;
    padding: 100px 80px;
    gap: 70px;
    align-items: center;
}

.mission-text {
    flex: 1;
}

.mission-text h2 {
    font-size: 38px;
    margin-bottom: 25px;
    color: #1a252f;
}

.mission-text p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #4a5568;
}

.mission-visual-offset {
    flex: 0.8;
    overflow: hidden;
    border-radius: 8px;
    background-color: #e9ecef;
}

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

.team-section-scattered {
    padding: 100px 50px;
    background-color: #f8f9fa;
}

.team-section-scattered h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 20px;
    color: #1a252f;
}

.team-section-scattered > p {
    text-align: center;
    font-size: 18px;
    color: #4a5568;
    max-width: 800px;
    margin: 0 auto 60px;
}

.team-grid-offset {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.team-member {
    background-color: #ffffff;
    padding: 35px;
    border-radius: 8px;
    width: calc(50% - 20px);
    min-width: 320px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.team-member h3 {
    font-size: 24px;
    margin-bottom: 5px;
    color: #1a252f;
}

.team-member .role {
    font-size: 16px;
    color: #3498db;
    font-weight: 600;
    margin-bottom: 15px;
}

.team-member p {
    font-size: 16px;
    color: #4a5568;
}

.values-block {
    padding: 100px 80px;
    background-color: #ffffff;
}

.values-block h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 60px;
    color: #1a252f;
}

.values-irregular-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.value-item {
    flex: 1;
    min-width: 280px;
    max-width: 500px;
    padding: 30px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.value-item h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #1a252f;
}

.value-item p {
    font-size: 16px;
    color: #4a5568;
}

.journey-section {
    padding: 100px 80px;
    background-color: #f8f9fa;
}

.journey-content-offset h2 {
    font-size: 40px;
    margin-bottom: 50px;
    color: #1a252f;
}

.timeline-irregular {
    display: flex;
    flex-direction: column;
    gap: 35px;
    max-width: 800px;
    margin-left: 60px;
}

.timeline-item {
    display: flex;
    align-items: flex-start;
    gap: 25px;
}

.timeline-item .year {
    font-size: 24px;
    font-weight: 700;
    color: #3498db;
    min-width: 80px;
}

.timeline-item p {
    font-size: 17px;
    color: #4a5568;
}

.cta-about-section {
    padding: 80px 50px;
    text-align: center;
    background-color: #ffffff;
}

.cta-about-section h2 {
    font-size: 38px;
    margin-bottom: 20px;
    color: #1a252f;
}

.cta-about-section p {
    font-size: 18px;
    color: #4a5568;
    margin-bottom: 35px;
}

.cta-btn-offset {
    display: inline-block;
    padding: 15px 40px;
    background-color: #3498db;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.cta-btn-offset:hover {
    background-color: #2980b9;
}

.services-hero-irregular {
    padding: 80px 50px;
    text-align: center;
    background-color: #f8f9fa;
}

.services-hero-irregular h1 {
    font-size: 46px;
    margin-bottom: 25px;
    color: #1a252f;
}

.services-hero-irregular p {
    font-size: 18px;
    color: #4a5568;
    max-width: 900px;
    margin: 0 auto;
}

.services-detailed-offset {
    padding: 80px 50px;
}

.service-detail-card {
    display: flex;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
    padding: 50px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.service-detail-card.card-offset-1 {
    margin-left: 0;
}

.service-detail-card.card-offset-2 {
    margin-left: 60px;
}

.service-detail-card.card-offset-3 {
    margin-left: 30px;
}

.service-detail-card.card-offset-4 {
    margin-left: 80px;
}

.service-detail-card.card-offset-5 {
    margin-left: 20px;
}

.service-detail-card.card-offset-6 {
    margin-left: 50px;
}

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

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

.service-text-block {
    flex: 1;
}

.service-text-block h2 {
    font-size: 34px;
    margin-bottom: 15px;
    color: #1a252f;
}

.service-price {
    font-size: 32px;
    font-weight: 700;
    color: #3498db;
    margin-bottom: 20px;
}

.service-text-block p {
    font-size: 17px;
    color: #4a5568;
    margin-bottom: 20px;
}

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

.service-features li {
    padding: 10px 0 10px 30px;
    position: relative;
    font-size: 16px;
    color: #2c3e50;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: 700;
}

.btn-service-action {
    display: inline-block;
    padding: 12px 30px;
    background-color: #3498db;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.btn-service-action:hover {
    background-color: #2980b9;
}

.pricing-info-section {
    padding: 60px 50px;
    background-color: #fff3cd;
    text-align: center;
}

.pricing-info-section h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #856404;
}

.pricing-info-section p {
    font-size: 17px;
    color: #856404;
    max-width: 800px;
    margin: 0 auto 15px;
}

.service-cta-irregular {
    padding: 80px 50px;
    text-align: center;
    background-color: #ffffff;
}

.service-cta-irregular h2 {
    font-size: 38px;
    margin-bottom: 20px;
    color: #1a252f;
}

.service-cta-irregular p {
    font-size: 18px;
    color: #4a5568;
    margin-bottom: 35px;
}

.cta-services-large {
    display: inline-block;
    padding: 18px 45px;
    background-color: #27ae60;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-size: 20px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.cta-services-large:hover {
    background-color: #229954;
}

.contact-hero-offset {
    padding: 80px 50px;
    text-align: center;
    background-color: #f8f9fa;
}

.contact-hero-offset h1 {
    font-size: 46px;
    margin-bottom: 25px;
    color: #1a252f;
}

.contact-hero-offset p {
    font-size: 18px;
    color: #4a5568;
    max-width: 800px;
    margin: 0 auto;
}

.contact-info-irregular {
    display: flex;
    padding: 100px 50px;
    gap: 60px;
    justify-content: center;
}

.contact-block {
    flex: 1;
    max-width: 350px;
    padding: 35px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.contact-block.contact-offset-1 {
    margin-top: 0;
}

.contact-block.contact-offset-2 {
    margin-top: 30px;
}

.contact-block.contact-offset-3 {
    margin-top: 15px;
}

.contact-block h2 {
    font-size: 26px;
    margin-bottom: 20px;
    color: #1a252f;
}

.contact-block p {
    font-size: 16px;
    color: #4a5568;
    margin-bottom: 10px;
}

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

.contact-visual-section {
    padding: 0 50px 60px;
}

.contact-visual-section img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 8px;
    background-color: #e9ecef;
}

.contact-approach-offset {
    padding: 80px 80px;
    background-color: #ffffff;
}

.contact-approach-offset h2 {
    font-size: 38px;
    margin-bottom: 50px;
    color: #1a252f;
}

.approach-blocks {
    display: flex;
    gap: 50px;
    justify-content: center;
}

.approach-item {
    flex: 1;
    max-width: 380px;
}

.approach-item h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #1a252f;
}

.approach-item p {
    font-size: 16px;
    color: #4a5568;
}

.faq-contact-section {
    padding: 80px 50px;
    background-color: #f8f9fa;
}

.faq-contact-section h2 {
    font-size: 38px;
    margin-bottom: 50px;
    text-align: center;
    color: #1a252f;
}

.faq-irregular-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.faq-item {
    flex: 1;
    min-width: 320px;
    max-width: 500px;
    padding: 30px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

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

.faq-item p {
    font-size: 16px;
    color: #4a5568;
}

.directions-section {
    padding: 60px 80px;
    background-color: #ffffff;
}

.directions-section h2 {
    font-size: 34px;
    margin-bottom: 25px;
    color: #1a252f;
}

.directions-section p {
    font-size: 17px;
    color: #4a5568;
    margin-bottom: 15px;
}

.contact-cta-irregular {
    padding: 80px 50px;
    text-align: center;
    background-color: #f8f9fa;
}

.contact-cta-irregular h2 {
    font-size: 38px;
    margin-bottom: 20px;
    color: #1a252f;
}

.contact-cta-irregular p {
    font-size: 18px;
    color: #4a5568;
    margin-bottom: 35px;
}

.cta-contact-btn {
    display: inline-block;
    padding: 15px 40px;
    background-color: #3498db;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.cta-contact-btn:hover {
    background-color: #2980b9;
}

.thanks-hero-offset {
    display: flex;
    padding: 100px 80px;
    gap: 70px;
    align-items: center;
    background-color: #f8f9fa;
}

.thanks-content {
    flex: 1;
}

.thanks-content h1 {
    font-size: 46px;
    margin-bottom: 25px;
    color: #1a252f;
}

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

.thanks-visual {
    flex: 0.8;
    overflow: hidden;
    border-radius: 8px;
    background-color: #e9ecef;
}

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

.next-steps-irregular {
    padding: 80px 50px;
    background-color: #ffffff;
}

.next-steps-irregular h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 50px;
    color: #1a252f;
}

.steps-layout {
    display: flex;
    gap: 50px;
    justify-content: center;
}

.step-item {
    flex: 1;
    max-width: 350px;
    text-align: center;
}

.step-number {
    display: inline-block;
    width: 60px;
    height: 60px;
    line-height: 60px;
    background-color: #3498db;
    color: #ffffff;
    border-radius: 50%;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
}

.step-item h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #1a252f;
}

.step-item p {
    font-size: 16px;
    color: #4a5568;
}

.thanks-info-section {
    padding: 80px 50px;
    text-align: center;
    background-color: #f8f9fa;
}

.thanks-info-section h2 {
    font-size: 34px;
    margin-bottom: 20px;
    color: #1a252f;
}

.thanks-info-section p {
    font-size: 17px;
    color: #4a5568;
    margin-bottom: 35px;
}

.thanks-links {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.thanks-link-btn {
    padding: 12px 30px;
    background-color: #3498db;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.thanks-link-btn:hover {
    background-color: #2980b9;
}

.thanks-testimonial {
    padding: 80px 50px;
    background-color: #ffffff;
}

.thanks-testimonial h2 {
    font-size: 34px;
    text-align: center;
    margin-bottom: 40px;
    color: #1a252f;
}

.testimonial-thanks {
    max-width: 700px;
    margin: 0 auto;
    padding: 40px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.testimonial-thanks p {
    font-size: 20px;
    font-style: italic;
    color: #2c3e50;
    margin-bottom: 20px;
}

.author-thanks {
    font-size: 16px;
    color: #6c757d;
    font-weight: 600;
}

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

.legal-page-content h1 {
    font-size: 42px;
    margin-bottom: 40px;
    color: #1a252f;
}

.legal-page-content h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #1a252f;
}

.legal-page-content h3 {
    font-size: 22px;
    margin-top: 25px;
    margin-bottom: 15px;
    color: #2c3e50;
}

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

.legal-page-content ul {
    margin: 20px 0 20px 30px;
}

.legal-page-content ul li {
    font-size: 16px;
    color: #4a5568;
    margin-bottom: 10px;
}

.legal-page-content a {
    color: #3498db;
    text-decoration: none;
}

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

.legal-update {
    margin-top: 50px;
    font-style: italic;
    color: #6c757d;
}

@media (max-width: 768px) {
    .hero-offset,
    .intro-asymmetric,
    .form-section-offset,
    .mission-irregular,
    .thanks-hero-offset {
        flex-direction: column;
        padding: 50px 30px;
    }

    .nav-asymmetric {
        flex-direction: column;
        gap: 20px;
        padding: 20px 30px;
    }

    .services-grid-offset,
    .trust-points,
    .testimonial-layout,
    .team-grid-offset,
    .values-irregular-layout,
    .contact-info-irregular,
    .approach-blocks,
    .faq-irregular-layout,
    .steps-layout,
    .thanks-links {
        flex-direction: column;
        align-items: center;
    }

    .service-card {
        width: 100%;
    }

    .service-detail-card {
        flex-direction: column;
        margin-left: 0 !important;
        padding: 30px;
    }

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

    .hero-content-left h1,
    .about-hero-offset h1,
    .services-hero-irregular h1,
    .contact-hero-offset h1,
    .thanks-content h1 {
        font-size: 36px;
    }
}