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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #ffffff;
    overflow-x: hidden;
}

.asymmetric-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 3rem;
    background-color: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    position: relative;
    flex-wrap: wrap;
}

.header-left {
    display: flex;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c5282;
    letter-spacing: -0.5px;
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.ad-notice {
    background-color: #fef3c7;
    color: #92400e;
    padding: 0.4rem 1rem;
    font-size: 0.8rem;
    border-radius: 4px;
    font-weight: 500;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-list a {
    text-decoration: none;
    color: #4a5568;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-list a:hover {
    color: #2c5282;
}

.hero-asymmetric {
    padding: 3rem 2rem;
    background-color: #f7fafc;
    position: relative;
}

.hero-offset-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.hero-text-block {
    max-width: 600px;
    padding: 3rem 2rem;
    background-color: #ffffff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 2;
    margin-left: 5%;
    transform: translateY(2rem);
}

.hero-text-block h1 {
    font-size: 2.8rem;
    line-height: 1.2;
    color: #1a202c;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.hero-text-block p {
    font-size: 1.1rem;
    color: #4a5568;
    line-height: 1.7;
}

.hero-image-overlap {
    width: 100%;
    max-width: 900px;
    margin-left: auto;
    margin-right: 8%;
    margin-top: -5rem;
    position: relative;
    z-index: 1;
    background-color: #e2e8f0;
}

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

.services-preview-irregular {
    padding: 6rem 2rem;
    background-color: #ffffff;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.service-card {
    display: flex;
    gap: 2rem;
    align-items: center;
    background-color: #f7fafc;
    padding: 2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    flex-wrap: wrap;
}

.service-card.offset-left {
    margin-right: 15%;
    transform: translateX(-3rem);
}

.service-card.offset-right {
    margin-left: 15%;
    transform: translateX(3rem);
    flex-direction: row-reverse;
}

.service-card.offset-center {
    margin: 0 10%;
}

.service-card img {
    width: 100%;
    max-width: 400px;
    height: 280px;
    object-fit: cover;
    background-color: #cbd5e0;
    flex-shrink: 0;
}

.service-info {
    flex: 1;
    min-width: 280px;
}

.service-info h3 {
    font-size: 1.8rem;
    color: #2d3748;
    margin-bottom: 1rem;
}

.service-info p {
    font-size: 1.05rem;
    color: #4a5568;
    line-height: 1.7;
}

.why-us-asymmetric {
    padding: 6rem 2rem;
    background-color: #edf2f7;
    display: flex;
    gap: 4rem;
    align-items: flex-start;
    max-width: 1400px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.why-left-block {
    flex: 1;
    min-width: 320px;
    padding-right: 3rem;
}

.why-left-block h2 {
    font-size: 2.5rem;
    color: #1a202c;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.feature-list-irregular {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.feature-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.feature-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c5282;
    opacity: 0.3;
    line-height: 1;
    flex-shrink: 0;
}

.feature-text h4 {
    font-size: 1.4rem;
    color: #2d3748;
    margin-bottom: 0.5rem;
}

.feature-text p {
    font-size: 1rem;
    color: #4a5568;
    line-height: 1.6;
}

.why-image-overlap {
    flex: 1;
    min-width: 320px;
    max-width: 600px;
    transform: translateY(-3rem);
    position: relative;
    background-color: #cbd5e0;
}

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

.form-section-asymmetric {
    padding: 6rem 2rem;
    background-color: #ffffff;
    position: relative;
}

.form-container-offset {
    max-width: 800px;
    margin: 0 auto;
    margin-left: 12%;
    background-color: #f7fafc;
    padding: 4rem 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-intro {
    margin-bottom: 3rem;
}

.form-intro h2 {
    font-size: 2.2rem;
    color: #1a202c;
    margin-bottom: 1rem;
}

.form-intro p {
    font-size: 1.05rem;
    color: #4a5568;
    line-height: 1.6;
}

.asymmetric-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    flex: 1;
    min-width: 250px;
}

.form-group label {
    font-weight: 600;
    color: #2d3748;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.9rem;
    border: 2px solid #cbd5e0;
    background-color: #ffffff;
    font-size: 1rem;
    color: #2d3748;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

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

.form-submit {
    padding: 1.1rem 3rem;
    background-color: #2c5282;
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    align-self: flex-start;
    margin-top: 1rem;
}

.form-submit:hover {
    background-color: #2a4365;
    transform: translateY(-2px);
}

.form-submit:active {
    transform: translateY(0);
}

.testimonials-irregular {
    padding: 6rem 2rem;
    background-color: #edf2f7;
    max-width: 1400px;
    margin: 0 auto;
}

.testimonials-irregular h2 {
    font-size: 2.5rem;
    color: #1a202c;
    margin-bottom: 3rem;
    text-align: center;
}

.testimonial-grid-asymmetric {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.testimonial-card {
    background-color: #ffffff;
    padding: 2.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    max-width: 700px;
}

.testimonial-card.offset-1 {
    margin-left: 5%;
}

.testimonial-card.offset-2 {
    margin-left: auto;
    margin-right: 8%;
}

.testimonial-card.offset-3 {
    margin-left: 12%;
}

.testimonial-text {
    font-size: 1.1rem;
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 1rem;
    font-style: italic;
}

.testimonial-author {
    font-weight: 600;
    color: #2d3748;
    font-size: 1rem;
}

.footer-asymmetric {
    background-color: #2d3748;
    color: #e2e8f0;
    padding: 4rem 2rem 2rem;
}

.footer-blocks {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 3rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.footer-block {
    flex: 1;
    min-width: 220px;
}

.footer-block h4 {
    color: #ffffff;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-block p {
    color: #cbd5e0;
    line-height: 1.6;
    font-size: 0.95rem;
}

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

.footer-block ul li {
    margin-bottom: 0.7rem;
}

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

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

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

.footer-bottom p {
    color: #cbd5e0;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.disclaimer-text {
    font-size: 0.85rem;
    color: #a0aec0;
    font-style: italic;
    max-width: 900px;
    margin: 1rem auto 0;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a202c;
    color: #ffffff;
    padding: 1.5rem 2rem;
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.2);
}

.cookie-content {
    max-width: 1200px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    min-width: 280px;
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.cookie-btn {
    padding: 0.7rem 1.8rem;
    border: none;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-btn.accept {
    background-color: #48bb78;
    color: #ffffff;
}

.cookie-btn.accept:hover {
    background-color: #38a169;
    transform: translateY(-2px);
}

.cookie-btn.reject {
    background-color: #4a5568;
    color: #ffffff;
}

.cookie-btn.reject:hover {
    background-color: #2d3748;
    transform: translateY(-2px);
}

.page-hero-offset {
    padding: 5rem 2rem 3rem;
    background-color: #edf2f7;
}

.hero-text-asymmetric {
    max-width: 800px;
    margin-left: 8%;
}

.hero-text-asymmetric h1 {
    font-size: 3rem;
    color: #1a202c;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-text-asymmetric p {
    font-size: 1.15rem;
    color: #4a5568;
    line-height: 1.7;
}

.services-detailed-asymmetric {
    padding: 4rem 2rem;
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    gap: 5rem;
}

.service-detail-card {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    align-items: flex-start;
    flex-wrap: wrap;
}

.service-detail-card.left-offset {
    margin-right: 10%;
}

.service-detail-card.right-offset {
    margin-left: 10%;
    flex-direction: row-reverse;
}

.service-image-box {
    flex: 1;
    min-width: 320px;
    max-width: 600px;
    background-color: #e2e8f0;
}

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

.service-content-box {
    flex: 1;
    min-width: 320px;
    max-width: 600px;
}

.service-content-box h2 {
    font-size: 2.2rem;
    color: #1a202c;
    margin-bottom: 1.5rem;
}

.service-content-box p {
    font-size: 1.05rem;
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    margin-bottom: 2rem;
}

.service-features li {
    padding-left: 1.5rem;
    margin-bottom: 0.7rem;
    position: relative;
    color: #4a5568;
    font-size: 1rem;
}

.service-features li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #48bb78;
    font-weight: bold;
}

.service-pricing {
    background-color: #f7fafc;
    padding: 1.5rem;
    border-left: 4px solid #2c5282;
}

.price-label {
    font-size: 0.95rem;
    color: #718096;
    margin-bottom: 0.5rem;
}

.price-value {
    font-size: 2rem;
    color: #2c5282;
    font-weight: 700;
}

.pricing-info-asymmetric {
    padding: 3rem 2rem;
    background-color: #edf2f7;
}

.pricing-notes {
    max-width: 900px;
    margin: 0 auto;
    margin-left: 12%;
}

.pricing-notes h3 {
    font-size: 1.6rem;
    color: #1a202c;
    margin-bottom: 1.5rem;
}

.pricing-notes p {
    font-size: 1rem;
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.about-hero-offset {
    padding: 5rem 2rem;
    background-color: #f7fafc;
    display: flex;
    gap: 3rem;
    align-items: flex-start;
    max-width: 1400px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.about-intro-asymmetric {
    flex: 1;
    min-width: 320px;
    max-width: 600px;
    padding: 2rem;
    margin-top: 3rem;
}

.about-intro-asymmetric h1 {
    font-size: 2.8rem;
    color: #1a202c;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.about-intro-asymmetric p {
    font-size: 1.1rem;
    color: #4a5568;
    line-height: 1.7;
}

.about-image-overlap {
    flex: 1;
    min-width: 320px;
    max-width: 700px;
    transform: translateY(-2rem);
    background-color: #cbd5e0;
}

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

.story-section-irregular {
    padding: 5rem 2rem;
    background-color: #ffffff;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    flex-wrap: wrap;
}

.story-block-left,
.story-block-right {
    flex: 1;
    min-width: 320px;
}

.story-block-left {
    padding-right: 2rem;
}

.story-block-right {
    padding-left: 2rem;
}

.story-block-left h2,
.story-block-right h2 {
    font-size: 2rem;
    color: #1a202c;
    margin-bottom: 1.5rem;
}

.story-block-left p,
.story-block-right p {
    font-size: 1.05rem;
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 1.2rem;
}

.values-asymmetric {
    padding: 5rem 2rem;
    background-color: #edf2f7;
    max-width: 1400px;
    margin: 0 auto;
}

.values-asymmetric h2 {
    font-size: 2.5rem;
    color: #1a202c;
    margin-bottom: 3rem;
    text-align: center;
}

.values-grid-irregular {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    justify-content: center;
}

.value-card {
    background-color: #ffffff;
    padding: 2.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    flex: 1;
    min-width: 280px;
    max-width: 400px;
}

.value-card.offset-a {
    transform: translateY(-1rem);
}

.value-card.offset-b {
    transform: translateY(1.5rem);
}

.value-card.offset-c {
    transform: translateY(-0.5rem);
}

.value-card.offset-d {
    transform: translateY(1rem);
}

.value-card h3 {
    font-size: 1.5rem;
    color: #2d3748;
    margin-bottom: 1rem;
}

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

.process-timeline-asymmetric {
    padding: 5rem 2rem;
    background-color: #ffffff;
    max-width: 1200px;
    margin: 0 auto;
}

.process-timeline-asymmetric h2 {
    font-size: 2.5rem;
    color: #1a202c;
    margin-bottom: 3rem;
    text-align: center;
}

.timeline-irregular {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.timeline-step {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.timeline-step.left-side {
    margin-right: 15%;
}

.timeline-step.right-side {
    margin-left: 15%;
    flex-direction: row-reverse;
}

.step-number {
    width: 60px;
    height: 60px;
    background-color: #2c5282;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    flex-shrink: 0;
    border-radius: 50%;
}

.step-content {
    flex: 1;
}

.step-content h3 {
    font-size: 1.5rem;
    color: #2d3748;
    margin-bottom: 0.8rem;
}

.step-content p {
    font-size: 1rem;
    color: #4a5568;
    line-height: 1.6;
}

.cta-about-asymmetric {
    padding: 5rem 2rem;
    background-color: #edf2f7;
}

.cta-box-offset {
    max-width: 700px;
    margin-left: 15%;
    background-color: #2c5282;
    padding: 4rem 3rem;
    color: #ffffff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.cta-box-offset h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.cta-box-offset p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #ffffff;
    color: #2c5282;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s ease;
}

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

.contact-hero-asymmetric {
    padding: 5rem 2rem 3rem;
    background-color: #f7fafc;
}

.contact-intro-offset {
    max-width: 800px;
    margin-left: 10%;
}

.contact-intro-offset h1 {
    font-size: 3rem;
    color: #1a202c;
    margin-bottom: 1.5rem;
}

.contact-intro-offset p {
    font-size: 1.15rem;
    color: #4a5568;
    line-height: 1.7;
}

.contact-info-irregular {
    padding: 5rem 2rem;
    background-color: #ffffff;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    flex-wrap: wrap;
}

.contact-block-left,
.contact-block-right {
    flex: 1;
    min-width: 320px;
}

.contact-block-left h2,
.contact-block-right h2 {
    font-size: 2rem;
    color: #1a202c;
    margin-bottom: 2rem;
}

.contact-detail {
    margin-bottom: 2.5rem;
}

.contact-detail h3 {
    font-size: 1.3rem;
    color: #2d3748;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.contact-detail p {
    font-size: 1.05rem;
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 0.3rem;
}

.contact-block-right p {
    font-size: 1.05rem;
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.faq-asymmetric {
    padding: 5rem 2rem;
    background-color: #edf2f7;
    max-width: 1400px;
    margin: 0 auto;
}

.faq-asymmetric h2 {
    font-size: 2.5rem;
    color: #1a202c;
    margin-bottom: 3rem;
    text-align: center;
}

.faq-list-irregular {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.faq-item {
    background-color: #ffffff;
    padding: 2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    max-width: 800px;
}

.faq-item.offset-left {
    margin-right: auto;
    margin-left: 5%;
}

.faq-item.offset-right {
    margin-left: auto;
    margin-right: 5%;
}

.faq-item h3 {
    font-size: 1.4rem;
    color: #2d3748;
    margin-bottom: 1rem;
}

.faq-item p {
    font-size: 1.05rem;
    color: #4a5568;
    line-height: 1.7;
}

.service-area-asymmetric {
    padding: 4rem 2rem;
    background-color: #ffffff;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.service-area-asymmetric h2 {
    font-size: 2rem;
    color: #1a202c;
    margin-bottom: 1.5rem;
}

.service-area-asymmetric p {
    font-size: 1.05rem;
    color: #4a5568;
    line-height: 1.7;
}

.thanks-hero-asymmetric {
    padding: 6rem 2rem;
    background-color: #f7fafc;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-content-offset {
    max-width: 800px;
    background-color: #ffffff;
    padding: 4rem 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    transform: translateX(-5%);
}

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

.thanks-content-offset h1 {
    font-size: 2.5rem;
    color: #1a202c;
    margin-bottom: 1.5rem;
}

.thanks-content-offset > p {
    font-size: 1.1rem;
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

.thanks-info-box {
    background-color: #edf2f7;
    padding: 2rem;
    margin-bottom: 2.5rem;
    text-align: left;
}

.thanks-info-box h2 {
    font-size: 1.6rem;
    color: #2d3748;
    margin-bottom: 1rem;
}

.thanks-steps {
    list-style: none;
    counter-reset: step-counter;
}

.thanks-steps li {
    counter-increment: step-counter;
    margin-bottom: 1rem;
    padding-left: 2rem;
    position: relative;
    color: #4a5568;
    line-height: 1.6;
}

.thanks-steps li:before {
    content: counter(step-counter) ".";
    position: absolute;
    left: 0;
    font-weight: 700;
    color: #2c5282;
}

.thanks-cta {
    margin-bottom: 2.5rem;
}

.thanks-cta p {
    font-size: 1rem;
    color: #4a5568;
    margin-bottom: 0.5rem;
}

.thanks-email {
    font-size: 1.2rem;
    color: #2c5282;
    font-weight: 600;
}

.thanks-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.thanks-button {
    padding: 1rem 2rem;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.thanks-button.primary {
    background-color: #2c5282;
    color: #ffffff;
}

.thanks-button.primary:hover {
    background-color: #2a4365;
    transform: translateY(-2px);
}

.thanks-button.secondary {
    background-color: #e2e8f0;
    color: #2d3748;
}

.thanks-button.secondary:hover {
    background-color: #cbd5e0;
    transform: translateY(-2px);
}

.legal-page-content {
    padding: 4rem 2rem;
    background-color: #ffffff;
}

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

.legal-container h1 {
    font-size: 2.5rem;
    color: #1a202c;
    margin-bottom: 1.5rem;
}

.legal-intro {
    font-size: 1.1rem;
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    font-style: italic;
    padding-left: 1.5rem;
    border-left: 4px solid #2c5282;
}

.legal-container h2 {
    font-size: 1.8rem;
    color: #2d3748;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.legal-container h3 {
    font-size: 1.4rem;
    color: #2d3748;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
}

.legal-container p {
    font-size: 1rem;
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.legal-container ul,
.legal-container ol {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.legal-container li {
    font-size: 1rem;
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

.legal-container a {
    color: #2c5282;
    text-decoration: underline;
}

.legal-container a:hover {
    color: #2a4365;
}

@media (max-width: 768px) {
    .asymmetric-header {
        padding: 1rem 1.5rem;
    }

    .header-nav {
        width: 100%;
        margin-top: 1rem;
        justify-content: center;
    }

    .nav-list {
        gap: 1rem;
        font-size: 0.9rem;
    }

    .hero-text-block {
        margin-left: 0;
        transform: none;
    }

    .hero-text-block h1 {
        font-size: 2rem;
    }

    .hero-image-overlap {
        margin-left: 0;
        margin-right: 0;
        margin-top: 0;
    }

    .service-card.offset-left,
    .service-card.offset-right,
    .service-card.offset-center {
        margin: 0;
        transform: none;
    }

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

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

    .why-us-asymmetric {
        flex-direction: column;
    }

    .why-image-overlap {
        transform: none;
    }

    .form-container-offset {
        margin-left: 0;
    }

    .testimonial-card.offset-1,
    .testimonial-card.offset-2,
    .testimonial-card.offset-3 {
        margin-left: 0;
        margin-right: 0;
    }

    .hero-text-asymmetric {
        margin-left: 0;
    }

    .hero-text-asymmetric h1 {
        font-size: 2.2rem;
    }

    .service-detail-card.left-offset,
    .service-detail-card.right-offset {
        margin-left: 0;
        margin-right: 0;
        flex-direction: column;
    }

    .pricing-notes {
        margin-left: 0;
    }

    .about-hero-offset {
        flex-direction: column;
    }

    .about-intro-asymmetric {
        margin-top: 0;
    }

    .about-image-overlap {
        transform: none;
    }

    .story-section-irregular {
        flex-direction: column;
    }

    .story-block-left,
    .story-block-right {
        padding: 0;
    }

    .value-card.offset-a,
    .value-card.offset-b,
    .value-card.offset-c,
    .value-card.offset-d {
        transform: none;
    }

    .timeline-step.left-side,
    .timeline-step.right-side {
        margin: 0;
        flex-direction: row;
    }

    .cta-box-offset {
        margin-left: 0;
    }

    .contact-intro-offset {
        margin-left: 0;
    }

    .contact-intro-offset h1 {
        font-size: 2.2rem;
    }

    .contact-info-irregular {
        flex-direction: column;
    }

    .faq-item.offset-left,
    .faq-item.offset-right {
        margin-left: 0;
        margin-right: 0;
    }

    .thanks-content-offset {
        transform: none;
        padding: 2.5rem 2rem;
    }

    .thanks-content-offset h1 {
        font-size: 2rem;
    }

    .thanks-actions {
        flex-direction: column;
    }

    .thanks-button {
        width: 100%;
        text-align: center;
    }

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

    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }
}