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

:root {
    --primary-color: #2c3e50;
    --secondary-color: #3498db;
    --accent-color: #e74c3c;
    --text-color: #333;
    --light-bg: #ecf0f1;
    --white: #ffffff;
    --border-radius: 8px;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background: var(--white);
}

.ad-disclosure {
    background: #fff9e6;
    color: #856404;
    text-align: center;
    padding: 8px 15px;
    font-size: 13px;
    border-bottom: 1px solid #ffeeba;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-floating {
    position: fixed;
    top: 40px;
    right: 60px;
    background: rgba(255, 255, 255, 0.95);
    padding: 20px 30px;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.nav-brand {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.nav-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.nav-links a {
    color: var(--text-color);
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--secondary-color);
}

.hero-offset {
    display: flex;
    min-height: 90vh;
    padding: 80px 60px 80px 120px;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    position: relative;
}

.hero-content-left {
    width: 48%;
    padding-top: 140px;
    padding-right: 60px;
    z-index: 2;
}

.hero-content-left h1 {
    font-size: 58px;
    line-height: 1.2;
    margin-bottom: 28px;
    color: var(--primary-color);
    font-weight: 800;
}

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

.cta-primary {
    display: inline-block;
    padding: 16px 38px;
    background: var(--accent-color);
    color: var(--white);
    text-decoration: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 17px;
    transition: all 0.3s ease;
}

.cta-primary:hover {
    background: #c0392b;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(231, 76, 60, 0.3);
}

.hero-image-offset {
    position: absolute;
    right: -80px;
    top: 180px;
    width: 52%;
    height: 600px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: -20px 20px 60px rgba(0, 0, 0, 0.15);
    background: var(--light-bg);
}

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

.trust-block-asymmetric {
    display: flex;
    padding: 120px 80px 100px 180px;
    background: var(--white);
    position: relative;
}

.trust-content {
    width: 42%;
    padding-right: 60px;
}

.trust-content h2 {
    font-size: 42px;
    margin-bottom: 25px;
    color: var(--primary-color);
    line-height: 1.3;
}

.trust-content p {
    font-size: 18px;
    line-height: 1.8;
    color: #666;
}

.trust-stats-offset {
    display: flex;
    flex-direction: column;
    gap: 35px;
    position: relative;
    left: 80px;
    top: -40px;
}

.stat-card {
    background: var(--secondary-color);
    color: var(--white);
    padding: 35px 45px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(52, 152, 219, 0.2);
    min-width: 280px;
}

.stat-card-shifted {
    margin-left: 60px;
}

.stat-number {
    display: block;
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 8px;
}

.stat-label {
    display: block;
    font-size: 16px;
    opacity: 0.95;
}

.services-asymmetric {
    padding: 100px 60px;
    background: var(--light-bg);
}

.section-header-offset {
    margin-left: 140px;
    margin-bottom: 80px;
}

.section-header-offset h2 {
    font-size: 46px;
    margin-bottom: 18px;
    color: var(--primary-color);
}

.section-header-offset p {
    font-size: 19px;
    color: #666;
}

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

.service-card {
    display: flex;
    align-items: center;
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-card-left {
    margin-left: 80px;
    margin-right: auto;
    max-width: 850px;
}

.service-card-right-offset {
    margin-left: auto;
    margin-right: 100px;
    max-width: 820px;
}

.service-card-center {
    margin-left: auto;
    margin-right: auto;
    max-width: 900px;
}

.service-image {
    width: 40%;
    height: 320px;
    background: var(--light-bg);
}

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

.service-info {
    width: 60%;
    padding: 40px 45px;
}

.service-info h3 {
    font-size: 28px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.service-info p {
    font-size: 16px;
    line-height: 1.7;
    color: #666;
    margin-bottom: 20px;
}

.price {
    display: block;
    font-size: 32px;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.service-select {
    padding: 12px 28px;
    background: var(--secondary-color);
    color: var(--white);
    border: none;
    border-radius: var(--border-radius);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.service-select:hover {
    background: #2980b9;
    transform: translateX(5px);
}

.process-overlay {
    position: relative;
    min-height: 700px;
    overflow: hidden;
}

.process-background {
    position: absolute;
    inset: 0;
    background: var(--light-bg);
}

.process-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
}

.process-content-overlay {
    position: relative;
    z-index: 2;
    padding: 100px 140px 100px 200px;
    background: rgba(236, 240, 241, 0.92);
}

.process-content-overlay h2 {
    font-size: 44px;
    margin-bottom: 70px;
    color: var(--primary-color);
}

.process-steps-offset {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    width: calc(50% - 25px);
}

.step-1 {
    margin-left: 0;
}

.step-2 {
    margin-left: 60px;
}

.step-3 {
    margin-left: 30px;
}

.step-4 {
    margin-left: 90px;
}

.step-number {
    font-size: 48px;
    font-weight: 800;
    color: var(--secondary-color);
    opacity: 0.3;
}

.step h4 {
    font-size: 22px;
    margin-bottom: 8px;
    color: var(--primary-color);
}

.step p {
    font-size: 16px;
    color: #666;
}

.testimonials-stagger {
    padding: 100px 80px;
    background: var(--white);
}

.testimonials-stagger h2 {
    font-size: 44px;
    text-align: center;
    margin-bottom: 80px;
    color: var(--primary-color);
}

.testimonials-grid {
    display: flex;
    flex-direction: column;
    gap: 45px;
}

.testimonial {
    background: var(--light-bg);
    padding: 35px 45px;
    border-radius: 16px;
    border-left: 5px solid var(--secondary-color);
    max-width: 750px;
}

.testimonial-left {
    margin-left: 120px;
}

.testimonial-right-offset {
    margin-left: auto;
    margin-right: 140px;
}

.testimonial-center {
    margin-left: auto;
    margin-right: auto;
}

.testimonial p {
    font-size: 17px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 15px;
    font-style: italic;
}

.testimonial-author {
    font-size: 15px;
    font-weight: 600;
    color: var(--primary-color);
}

.form-section-offset {
    padding: 100px 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.form-container {
    max-width: 650px;
    margin-left: 180px;
    background: var(--white);
    padding: 50px 55px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
}

.form-container h2 {
    font-size: 36px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

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

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

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

.form-group label {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 16px;
    border: 2px solid #ddd;
    border-radius: var(--border-radius);
    font-size: 15px;
    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: var(--secondary-color);
}

.btn-submit {
    padding: 16px 35px;
    background: var(--accent-color);
    color: var(--white);
    border: none;
    border-radius: var(--border-radius);
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

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

.disclaimer-section {
    padding: 60px 120px;
    background: #fff9e6;
    border-top: 2px solid #ffeeba;
    border-bottom: 2px solid #ffeeba;
}

.disclaimer-text {
    font-size: 14px;
    line-height: 1.7;
    color: #856404;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

.footer-asymmetric {
    background: var(--primary-color);
    color: var(--white);
    padding: 80px 100px 30px;
}

.footer-main {
    display: flex;
    justify-content: space-between;
    margin-bottom: 60px;
}

.footer-column {
    flex: 1;
}

.footer-col-offset-1 {
    margin-right: 40px;
}

.footer-col-offset-2 {
    margin-left: 30px;
}

.footer-col-offset-3 {
    margin-left: 60px;
}

.footer-column h4 {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--white);
}

.footer-column p {
    font-size: 15px;
    line-height: 1.6;
    opacity: 0.9;
}

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

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

.footer-column ul li a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.85;
    transition: opacity 0.3s ease;
}

.footer-column ul li a:hover {
    opacity: 1;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-bottom p {
    font-size: 14px;
    opacity: 0.8;
}

.cookie-banner {
    position: fixed;
    bottom: 30px;
    left: 30px;
    max-width: 420px;
    background: var(--white);
    padding: 25px 30px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    display: none;
}

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

.cookie-content p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-color);
    margin-bottom: 18px;
}

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

.btn-cookie-accept,
.btn-cookie-reject {
    flex: 1;
    padding: 10px 20px;
    border: none;
    border-radius: var(--border-radius);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-cookie-accept {
    background: var(--secondary-color);
    color: var(--white);
}

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

.btn-cookie-reject {
    background: #95a5a6;
    color: var(--white);
}

.btn-cookie-reject:hover {
    background: #7f8c8d;
}

.page-header-offset {
    padding: 180px 80px 80px 180px;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.page-header-offset h1 {
    font-size: 52px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.page-header-offset p {
    font-size: 20px;
    color: #555;
}

.services-detail-asymmetric {
    padding: 80px 60px;
    background: var(--white);
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.service-detail-item {
    display: flex;
    align-items: center;
    gap: 60px;
}

.service-layout-1 {
    margin-left: 100px;
}

.service-layout-2 {
    margin-left: auto;
    margin-right: 120px;
    max-width: 1100px;
}

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

.service-detail-content h2 {
    font-size: 38px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

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

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

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

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: 700;
}

.service-pricing-box {
    background: var(--light-bg);
    padding: 20px 25px;
    border-radius: var(--border-radius);
    margin-bottom: 25px;
    display: inline-block;
}

.price-label {
    display: block;
    font-size: 14px;
    color: #666;
    margin-bottom: 5px;
}

.price-value {
    display: block;
    font-size: 36px;
    font-weight: 700;
    color: var(--accent-color);
}

.service-detail-image {
    width: 420px;
    height: 350px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    background: var(--light-bg);
}

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

.about-hero-asymmetric {
    display: flex;
    padding: 140px 80px 100px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    align-items: center;
    gap: 80px;
}

.about-content-offset {
    flex: 1;
    margin-left: 60px;
}

.about-content-offset h1 {
    font-size: 52px;
    margin-bottom: 20px;
    color: var(--white);
}

.about-content-offset p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.95);
}

.about-image-shifted {
    width: 500px;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: -15px 15px 50px rgba(0, 0, 0, 0.25);
    margin-right: 40px;
    background: var(--light-bg);
}

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

.story-section-irregular {
    padding: 100px 80px;
    background: var(--white);
    display: flex;
    flex-direction: column;
    gap: 70px;
}

.story-block {
    max-width: 800px;
}

.story-offset-left {
    margin-left: 140px;
}

.story-offset-right {
    margin-left: auto;
    margin-right: 160px;
}

.story-block h2 {
    font-size: 38px;
    margin-bottom: 22px;
    color: var(--primary-color);
}

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

.team-section-stagger {
    padding: 100px 80px;
    background: var(--light-bg);
}

.team-section-stagger h2 {
    font-size: 44px;
    text-align: center;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.team-intro {
    text-align: center;
    font-size: 18px;
    color: #666;
    margin-bottom: 70px;
}

.team-grid-asymmetric {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.team-member {
    background: var(--white);
    padding: 40px 50px;
    border-radius: 16px;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
    max-width: 700px;
}

.team-position-1 {
    margin-left: 120px;
}

.team-position-2 {
    margin-left: auto;
    margin-right: 140px;
}

.team-position-3 {
    margin-left: 200px;
}

.team-info h3 {
    font-size: 28px;
    margin-bottom: 8px;
    color: var(--primary-color);
}

.team-role {
    display: block;
    font-size: 16px;
    color: var(--secondary-color);
    margin-bottom: 15px;
    font-weight: 600;
}

.team-info p {
    font-size: 16px;
    line-height: 1.7;
    color: #666;
}

.values-section-offset {
    padding: 100px 80px;
    background: var(--white);
}

.values-section-offset h2 {
    font-size: 44px;
    margin-bottom: 70px;
    text-align: center;
    color: var(--primary-color);
}

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

.value-card {
    background: var(--light-bg);
    padding: 35px 40px;
    border-radius: 16px;
    border-left: 5px solid var(--secondary-color);
    width: calc(50% - 25px);
}

.value-left {
    margin-left: 80px;
}

.value-center-offset {
    margin-left: auto;
    margin-right: 100px;
}

.value-right {
    margin-left: auto;
    margin-right: 60px;
}

.value-left-shifted {
    margin-left: 140px;
}

.value-card h3 {
    font-size: 26px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

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

.workshop-section {
    position: relative;
    min-height: 500px;
}

.workshop-image-background {
    position: absolute;
    inset: 0;
    background: var(--light-bg);
}

.workshop-image-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
}

.workshop-overlay-content {
    position: relative;
    z-index: 2;
    padding: 80px 100px 80px 180px;
    background: rgba(236, 240, 241, 0.9);
    max-width: 900px;
    margin-left: auto;
    margin-right: 100px;
}

.workshop-overlay-content h2 {
    font-size: 40px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.workshop-overlay-content p {
    font-size: 17px;
    line-height: 1.8;
    color: #555;
}

.contact-hero-offset {
    padding: 160px 80px 80px 200px;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.contact-hero-offset h1 {
    font-size: 52px;
    margin-bottom: 20px;
    color: var(--white);
}

.contact-hero-offset p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.95);
}

.contact-content-asymmetric {
    padding: 100px 80px;
    background: var(--white);
    display: flex;
    gap: 80px;
}

.contact-info-block {
    flex: 1;
}

.contact-offset-left {
    margin-left: 100px;
}

.contact-offset-right {
    margin-right: 120px;
}

.contact-info-block h2 {
    font-size: 38px;
    margin-bottom: 40px;
    color: var(--primary-color);
}

.contact-info-block h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.contact-info-block p {
    font-size: 16px;
    line-height: 1.7;
    color: #666;
}

.email-display {
    color: var(--text-color);
    font-weight: 600;
}

.transport-list {
    list-style: none;
    margin-top: 15px;
}

.transport-list li {
    font-size: 16px;
    padding: 8px 0 8px 25px;
    position: relative;
    color: #666;
}

.transport-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
}

.location-section-irregular {
    padding: 80px 100px;
    background: var(--light-bg);
}

.location-info-offset {
    max-width: 750px;
    margin-left: 180px;
}

.location-info-offset h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.location-info-offset p {
    font-size: 17px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 20px;
}

.faq-section-stagger {
    padding: 100px 80px;
    background: var(--white);
}

.faq-section-stagger h2 {
    font-size: 44px;
    margin-bottom: 70px;
    text-align: center;
    color: var(--primary-color);
}

.faq-grid-offset {
    display: flex;
    flex-direction: column;
    gap: 45px;
}

.faq-item {
    background: var(--light-bg);
    padding: 30px 40px;
    border-radius: 12px;
    max-width: 800px;
}

.faq-left {
    margin-left: 100px;
}

.faq-right-offset {
    margin-left: auto;
    margin-right: 120px;
}

.faq-center {
    margin-left: auto;
    margin-right: auto;
}

.faq-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

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

.thanks-section-asymmetric {
    display: flex;
    padding: 120px 80px;
    background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
    gap: 80px;
}

.thanks-content-offset {
    flex: 1;
    margin-left: 120px;
}

.success-icon {
    width: 80px;
    height: 80px;
    background: #27ae60;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    margin-bottom: 30px;
}

.thanks-content-offset h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.thanks-message {
    font-size: 18px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 30px;
}

.service-confirmation {
    background: rgba(255, 255, 255, 0.7);
    padding: 20px 25px;
    border-radius: var(--border-radius);
    margin-bottom: 40px;
    font-size: 16px;
    color: var(--primary-color);
    font-weight: 600;
}

.next-steps-irregular {
    margin-bottom: 50px;
}

.next-steps-irregular h2 {
    font-size: 34px;
    margin-bottom: 40px;
    color: var(--primary-color);
}

.step-item {
    display: flex;
    gap: 25px;
    margin-bottom: 35px;
}

.step-offset-1 {
    margin-left: 0;
}

.step-offset-2 {
    margin-left: 40px;
}

.step-offset-3 {
    margin-left: 20px;
}

.step-item .step-number {
    font-size: 36px;
    font-weight: 800;
    color: var(--secondary-color);
    opacity: 0.4;
}

.step-content h3 {
    font-size: 20px;
    margin-bottom: 8px;
    color: var(--primary-color);
}

.step-content p {
    font-size: 15px;
    line-height: 1.6;
    color: #666;
}

.thanks-cta-group {
    display: flex;
    gap: 15px;
}

.btn-primary {
    padding: 14px 30px;
    background: var(--accent-color);
    color: var(--white);
    text-decoration: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    transition: all 0.3s ease;
}

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

.btn-secondary {
    padding: 14px 30px;
    background: var(--secondary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    transition: all 0.3s ease;
}

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

.thanks-side-info {
    width: 320px;
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-right: 80px;
}

.info-box {
    background: rgba(255, 255, 255, 0.8);
    padding: 25px 30px;
    border-radius: 12px;
}

.info-offset {
    margin-top: 40px;
}

.info-offset-2 {
    margin-top: 20px;
}

.info-box h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.info-box p {
    font-size: 15px;
    line-height: 1.6;
    color: #555;
}

.legal-page-content {
    padding: 140px 100px 80px 200px;
    background: var(--white);
    max-width: 1200px;
}

.legal-page-content h1 {
    font-size: 46px;
    margin-bottom: 50px;
    color: var(--primary-color);
}

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

.legal-section h2 {
    font-size: 28px;
    margin-bottom: 18px;
    color: var(--primary-color);
}

.legal-section h3 {
    font-size: 22px;
    margin-top: 25px;
    margin-bottom: 12px;
    color: var(--text-color);
}

.legal-section h4 {
    font-size: 18px;
    margin-top: 20px;
    margin-bottom: 10px;
    color: var(--text-color);
}

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

.legal-section ul {
    margin-left: 30px;
    margin-bottom: 15px;
}

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

.legal-section a {
    color: var(--secondary-color);
    text-decoration: none;
}

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

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

.cookies-table thead {
    background: var(--light-bg);
}

.cookies-table th {
    padding: 15px;
    text-align: left;
    font-size: 15px;
    font-weight: 600;
    color: var(--primary-color);
    border-bottom: 2px solid #ddd;
}

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

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

@media (max-width: 1024px) {
    .hero-offset,
    .trust-block-asymmetric,
    .about-hero-asymmetric,
    .contact-content-asymmetric,
    .thanks-section-asymmetric {
        flex-direction: column;
    }

    .hero-content-left,
    .trust-content,
    .about-content-offset {
        width: 100%;
        padding-right: 0;
    }

    .hero-image-offset {
        position: relative;
        right: 0;
        top: 0;
        width: 100%;
        margin-top: 40px;
    }

    .nav-floating {
        position: relative;
        top: 0;
        right: 0;
        margin: 20px;
    }

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

    .service-image,
    .service-info {
        width: 100%;
    }

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

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

    .step {
        width: 100%;
        margin-left: 0 !important;
    }

    .thanks-side-info {
        width: 100%;
        margin-right: 0;
    }
}