* {
    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;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 20px;
    z-index: 10000;
    display: none;
}

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

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

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

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

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-cookie-accept {
    background-color: #3498db;
    color: #ffffff;
}

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

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

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

.nav-main {
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

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

.nav-disclosure {
    font-size: 11px;
    color: #7f8c8d;
    padding: 4px 12px;
    background-color: #f8f9fa;
    border-radius: 3px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 32px;
}

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

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

.hero-split {
    display: flex;
    min-height: 600px;
}

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

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

.hero-left p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 32px;
    color: #546e7a;
}

.hero-right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

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

.btn-primary {
    display: inline-block;
    padding: 16px 40px;
    background-color: #3498db;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
}

.intro-split {
    display: flex;
    min-height: 500px;
}

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

.intro-left h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1a252f;
    font-weight: 700;
    line-height: 1.3;
}

.intro-left p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #546e7a;
}

.intro-right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

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

.services-preview {
    padding: 80px 40px;
    background-color: #fafbfc;
}

.services-header {
    max-width: 1200px;
    margin: 0 auto 60px;
    text-align: center;
}

.services-header h2 {
    font-size: 42px;
    color: #1a252f;
    font-weight: 700;
}

.services-grid-split {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.service-card {
    display: flex;
    min-height: 350px;
}

.service-image {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

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

.service-content {
    flex: 1;
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #ffffff;
}

.service-content h3 {
    font-size: 28px;
    margin-bottom: 16px;
    color: #1a252f;
    font-weight: 700;
}

.service-content p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 16px;
    color: #546e7a;
}

.service-price {
    font-size: 24px;
    font-weight: 700;
    color: #3498db;
    margin-top: 12px;
}

.services-cta {
    max-width: 1200px;
    margin: 60px auto 0;
    text-align: center;
}

.btn-secondary {
    display: inline-block;
    padding: 14px 36px;
    background-color: transparent;
    color: #3498db;
    text-decoration: none;
    border: 2px solid #3498db;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    margin: 0 8px;
}

.btn-secondary:hover {
    background-color: #3498db;
    color: #ffffff;
    transform: translateY(-2px);
}

.trust-split {
    display: flex;
    min-height: 500px;
}

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

.trust-left h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1a252f;
    font-weight: 700;
    line-height: 1.3;
}

.trust-left p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #546e7a;
}

.trust-right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

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

.form-split {
    display: flex;
    min-height: 600px;
    background-color: #f8f9fa;
}

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

.form-left-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #1a252f;
    font-weight: 700;
}

.form-left-content p {
    font-size: 17px;
    line-height: 1.7;
    color: #546e7a;
}

.form-right-container {
    flex: 1;
    padding: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ffffff;
}

.contact-form {
    width: 100%;
    max-width: 500px;
}

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

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

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-size: 15px;
    transition: border-color 0.3s ease;
}

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

.btn-submit {
    width: 100%;
    padding: 16px;
    background-color: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.disclaimer-section {
    padding: 60px 40px;
    background-color: #ecf0f1;
}

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

.disclaimer-text {
    font-size: 14px;
    line-height: 1.8;
    color: #546e7a;
    text-align: center;
    font-style: italic;
}

.footer-main {
    background-color: #2c3e50;
    color: #ffffff;
    padding: 60px 40px 30px;
}

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

.footer-split {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column {
    flex: 1;
}

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 16px;
    font-weight: 700;
}

.footer-column p {
    font-size: 14px;
    line-height: 1.6;
    color: #bdc3c7;
    margin-bottom: 8px;
}

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

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

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

.footer-column ul li a:hover {
    color: #3498db;
}

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

.footer-bottom p {
    font-size: 13px;
    color: #95a5a6;
}

.page-header-split {
    display: flex;
    min-height: 400px;
}

.header-content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px;
    background-color: #ffffff;
}

.header-content h1 {
    font-size: 48px;
    color: #1a252f;
    font-weight: 700;
    line-height: 1.2;
}

.header-image {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

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

.about-story-split {
    display: flex;
    min-height: 500px;
}

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

.story-left h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1a252f;
    font-weight: 700;
    line-height: 1.3;
}

.story-left p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #546e7a;
}

.story-right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

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

.approach-split {
    display: flex;
    min-height: 500px;
}

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

.approach-left h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1a252f;
    font-weight: 700;
    line-height: 1.3;
}

.approach-left p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #546e7a;
}

.approach-right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

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

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

.values-container {
    max-width: 1200px;
    margin: 0 auto;
}

.values-container h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: #1a252f;
    font-weight: 700;
}

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

.value-item {
    flex: 1;
    min-width: 280px;
    padding: 30px;
    background-color: #ffffff;
    border-left: 4px solid #3498db;
}

.value-item h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #1a252f;
    font-weight: 700;
}

.value-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #546e7a;
}

.experience-split {
    display: flex;
    min-height: 500px;
}

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

.experience-left h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1a252f;
    font-weight: 700;
    line-height: 1.3;
}

.experience-left p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #546e7a;
}

.experience-right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

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

.cta-split {
    display: flex;
    min-height: 300px;
    background-color: #3498db;
}

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

.cta-content-left h2 {
    font-size: 36px;
    margin-bottom: 16px;
    color: #ffffff;
    font-weight: 700;
}

.cta-content-left p {
    font-size: 17px;
    line-height: 1.7;
    color: #ffffff;
}

.cta-button-right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px;
}

.btn-primary-large {
    display: inline-block;
    padding: 20px 48px;
    background-color: #ffffff;
    color: #3498db;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 700;
    font-size: 18px;
    transition: all 0.3s ease;
}

.btn-primary-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.services-header-split {
    display: flex;
    min-height: 400px;
}

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

.header-text h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #1a252f;
    font-weight: 700;
    line-height: 1.2;
}

.header-text p {
    font-size: 18px;
    line-height: 1.7;
    color: #546e7a;
}

.header-visual {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.header-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

.service-detail-split {
    display: flex;
    min-height: 450px;
    margin-bottom: 0;
}

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

.service-detail-left {
    flex: 1;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #ffffff;
}

.service-detail-left h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1a252f;
    font-weight: 700;
}

.service-detail-left p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 16px;
    color: #546e7a;
}

.service-list {
    margin: 20px 0 20px 20px;
    color: #546e7a;
}

.service-list li {
    margin-bottom: 10px;
    font-size: 15px;
    line-height: 1.6;
}

.service-detail-price {
    font-size: 28px;
    font-weight: 700;
    color: #3498db;
    margin: 20px 0 12px;
}

.service-note {
    font-size: 14px;
    color: #7f8c8d;
    font-style: italic;
}

.service-detail-right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

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

.pricing-note-section {
    padding: 80px 40px;
    background-color: #f8f9fa;
}

.pricing-note-content {
    max-width: 900px;
    margin: 0 auto;
}

.pricing-note-content h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #1a252f;
    font-weight: 700;
    text-align: center;
}

.pricing-note-content p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #546e7a;
}

.pricing-factors {
    margin: 30px 0 30px 30px;
    color: #546e7a;
}

.pricing-factors li {
    margin-bottom: 12px;
    font-size: 16px;
    line-height: 1.6;
}

.services-form-section {
    padding: 80px 40px;
    background-color: #ffffff;
}

.services-form-split {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
}

.form-text-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.form-text-left h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #1a252f;
    font-weight: 700;
}

.form-text-left p {
    font-size: 17px;
    line-height: 1.7;
    color: #546e7a;
}

.form-container-right {
    flex: 1;
    display: flex;
    align-items: center;
}

.contact-header-split {
    display: flex;
    min-height: 400px;
}

.contact-header-left {
    flex: 1;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #ffffff;
}

.contact-header-left h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #1a252f;
    font-weight: 700;
    line-height: 1.2;
}

.contact-header-left p {
    font-size: 18px;
    line-height: 1.7;
    color: #546e7a;
}

.contact-header-right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

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

.contact-info-split {
    display: flex;
    min-height: 500px;
}

.contact-details-left {
    flex: 1;
    padding: 60px;
    background-color: #ffffff;
}

.contact-details-left h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #1a252f;
    font-weight: 700;
}

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

.contact-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #2c3e50;
    font-weight: 700;
}

.contact-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #546e7a;
    margin-bottom: 8px;
}

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

.contact-map-right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px;
}

.map-placeholder {
    width: 100%;
    height: 100%;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    border-radius: 8px;
}

.map-content h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #1a252f;
    font-weight: 700;
}

.map-content p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 16px;
    color: #546e7a;
}

.map-content ul {
    list-style: none;
    margin-top: 12px;
}

.map-content ul li {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 8px;
    color: #546e7a;
}

.contact-additional {
    padding: 80px 40px;
    background-color: #fafbfc;
}

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

.contact-additional-content h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #1a252f;
    font-weight: 700;
    text-align: center;
}

.contact-additional-content p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #546e7a;
}

.process-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
}

.process-step {
    flex: 1;
    min-width: 240px;
    padding: 30px;
    background-color: #ffffff;
    border-radius: 8px;
}

.process-step h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #3498db;
    font-weight: 700;
}

.process-step p {
    font-size: 15px;
    line-height: 1.7;
    color: #546e7a;
}

.contact-faq-split {
    display: flex;
    min-height: 500px;
}

.faq-left {
    flex: 1;
    padding: 60px;
    background-color: #ffffff;
}

.faq-left h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #1a252f;
    font-weight: 700;
}

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

.faq-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #2c3e50;
    font-weight: 700;
}

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

.faq-right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

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

.contact-cta {
    padding: 80px 40px;
    background-color: #3498db;
}

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

.contact-cta-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #ffffff;
    font-weight: 700;
}

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

.thanks-split {
    display: flex;
    min-height: 600px;
}

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

.thanks-left h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #1a252f;
    font-weight: 700;
}

.thanks-left p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 16px;
    color: #546e7a;
}

.thanks-info {
    margin: 40px 0;
    padding: 30px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.thanks-info h2 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #2c3e50;
    font-weight: 700;
}

.thanks-info ul {
    list-style: none;
    margin-left: 0;
}

.thanks-info ul li {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 12px;
    color: #546e7a;
    padding-left: 24px;
    position: relative;
}

.thanks-info ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #3498db;
    font-weight: 700;
}

.thanks-cta {
    margin-top: 40px;
}

.thanks-cta p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #2c3e50;
    font-weight: 600;
}

.thanks-right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

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

.thanks-contact {
    padding: 60px 40px;
    background-color: #fafbfc;
}

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

.thanks-contact-content h2 {
    font-size: 32px;
    margin-bottom: 16px;
    color: #1a252f;
    font-weight: 700;
}

.thanks-contact-content p {
    font-size: 17px;
    line-height: 1.7;
    color: #546e7a;
}

.legal-page {
    padding: 80px 40px;
    background-color: #ffffff;
}

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

.legal-container h1 {
    font-size: 42px;
    margin-bottom: 40px;
    color: #1a252f;
    font-weight: 700;
    text-align: center;
}

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

.legal-section h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #2c3e50;
    font-weight: 700;
}

.legal-section h3 {
    font-size: 22px;
    margin: 20px 0 12px;
    color: #34495e;
    font-weight: 700;
}

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

.legal-section ul,
.legal-section ol {
    margin: 16px 0 16px 30px;
    color: #546e7a;
}

.legal-section ul li,
.legal-section ol li {
    margin-bottom: 10px;
    font-size: 16px;
    line-height: 1.7;
}

@media (max-width: 1024px) {
    .hero-split,
    .intro-split,
    .trust-split,
    .form-split,
    .about-story-split,
    .approach-split,
    .experience-split,
    .cta-split,
    .page-header-split,
    .services-header-split,
    .service-detail-split,
    .contact-header-split,
    .contact-info-split,
    .contact-faq-split,
    .thanks-split {
        flex-direction: column;
    }

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

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

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

    .nav-links {
        gap: 16px;
        font-size: 14px;
    }

    .hero-left h1,
    .header-content h1,
    .header-text h1,
    .contact-header-left h1,
    .thanks-left h1 {
        font-size: 36px;
    }

    .services-form-split {
        flex-direction: column;
        gap: 40px;
    }

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

    .process-steps {
        flex-direction: column;
    }

    .footer-split {
        flex-wrap: wrap;
    }

    .footer-column {
        flex: 1 1 45%;
    }
}

@media (max-width: 640px) {
    .hero-left,
    .intro-left,
    .trust-left,
    .form-left-content,
    .story-left,
    .approach-left,
    .experience-left,
    .cta-content-left,
    .service-detail-left,
    .contact-details-left,
    .faq-left,
    .thanks-left {
        padding: 40px 20px;
    }

    .form-right-container {
        padding: 40px 20px;
    }

    .hero-left h1 {
        font-size: 28px;
    }

    .nav-links {
        display: none;
    }

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