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

:root {
    --primary-color: #2c3e50;
    --secondary-color: #8b7355;
    --accent-color: #c9a961;
    --text-dark: #1a1a1a;
    --text-light: #666666;
    --bg-light: #f8f6f3;
    --bg-white: #ffffff;
    --border-color: #e0ddd9;
}

body {
    font-family: 'Georgia', serif;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--bg-white);
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(44, 62, 80, 0.98);
    color: white;
    padding: 25px;
    z-index: 10000;
    display: none;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
}

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

.cookie-content p {
    margin: 0;
    font-size: 15px;
    text-align: center;
}

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

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

.btn-cookie-accept {
    background-color: var(--accent-color);
    color: var(--text-dark);
}

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

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

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

.header-asymmetric {
    position: relative;
    background-color: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
}

.ad-disclosure {
    background-color: var(--bg-light);
    padding: 8px 20px;
    text-align: center;
    font-size: 13px;
    color: var(--text-light);
    border-bottom: 1px solid var(--border-color);
}

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

.logo-offset {
    font-size: 26px;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: -0.5px;
}

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

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-size: 16px;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

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

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-color);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

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

.hero-text-offset {
    flex: 1;
    padding-right: 40px;
    z-index: 2;
}

.hero-title-large {
    font-size: 68px;
    line-height: 1.1;
    color: var(--primary-color);
    margin-bottom: 30px;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 22px;
    color: var(--text-light);
    line-height: 1.6;
}

.hero-image-overlap {
    flex: 1.2;
    position: relative;
    margin-left: -80px;
    background-color: var(--bg-light);
}

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

.intro-offset {
    max-width: 1400px;
    margin: 100px auto;
    padding: 0 40px;
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

.intro-block-left {
    flex: 1.3;
    padding-right: 40px;
}

.intro-block-left h2 {
    font-size: 42px;
    color: var(--primary-color);
    margin-bottom: 30px;
    line-height: 1.2;
}

.intro-block-left p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 25px;
}

.intro-image-right {
    flex: 1;
    background-color: var(--bg-light);
}

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

.services-irregular {
    background-color: var(--bg-light);
    padding: 120px 40px;
    position: relative;
}

.section-title-overlap {
    max-width: 1400px;
    margin: 0 auto 80px;
}

.section-title-overlap h2 {
    font-size: 52px;
    color: var(--primary-color);
    padding-left: 120px;
}

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

.service-card {
    background-color: var(--bg-white);
    padding: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    border: 1px solid var(--border-color);
}

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

.service-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    background-color: var(--bg-light);
}

.service-card h3 {
    font-size: 24px;
    color: var(--primary-color);
    margin: 25px 30px 15px;
}

.service-card p {
    font-size: 16px;
    color: var(--text-light);
    margin: 0 30px 20px;
    line-height: 1.6;
}

.price-tag {
    font-size: 28px;
    font-weight: 700;
    color: var(--accent-color);
    margin: 25px 30px 20px;
    display: block;
}

.btn-select-service {
    width: calc(100% - 60px);
    margin: 0 30px 30px;
    padding: 14px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.service-card-offset-1 {
    width: calc(48% - 20px);
    margin-left: 0;
}

.service-card-offset-2 {
    width: calc(48% - 20px);
    margin-left: 4%;
}

.service-card-offset-3 {
    width: calc(55% - 20px);
    margin-left: 8%;
}

.service-card-offset-4 {
    width: calc(40% - 20px);
}

.service-card-offset-5 {
    width: calc(45% - 20px);
}

.service-card-offset-6 {
    width: calc(50% - 20px);
    margin-left: 5%;
}

.process-overlap {
    max-width: 1400px;
    margin: 120px auto;
    padding: 0 40px;
    display: flex;
    gap: 100px;
    align-items: center;
}

.process-content-left {
    flex: 1.2;
}

.process-content-left h2 {
    font-size: 46px;
    color: var(--primary-color);
    margin-bottom: 50px;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.process-step {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.step-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--accent-color);
    opacity: 0.4;
    min-width: 80px;
}

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

.step-content p {
    font-size: 17px;
    color: var(--text-light);
    line-height: 1.6;
}

.process-image-overlap {
    flex: 1;
    position: relative;
    margin-top: -60px;
    background-color: var(--bg-light);
}

.process-image-overlap img {
    width: 100%;
    height: 520px;
    object-fit: cover;
}

.testimonials-staggered {
    background-color: var(--primary-color);
    padding: 100px 40px;
    color: white;
}

.testimonials-staggered h2 {
    max-width: 1400px;
    margin: 0 auto 60px;
    font-size: 48px;
    text-align: center;
}

.testimonials-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 50px;
}

.testimonial-card {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 40px;
    flex: 1;
    border-left: 4px solid var(--accent-color);
}

.testimonial-card p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 25px;
    font-style: italic;
}

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

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

.testimonial-offset-2 {
    margin-top: 40px;
}

.testimonial-offset-3 {
    margin-top: 20px;
}

.form-section-asymmetric {
    max-width: 1400px;
    margin: 120px auto;
    padding: 0 40px;
}

.form-container-offset {
    max-width: 700px;
    margin-left: 150px;
    background-color: var(--bg-light);
    padding: 60px;
}

.form-container-offset h2 {
    font-size: 42px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.form-container-offset > p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 40px;
}

.selected-service-display {
    background-color: var(--bg-white);
    padding: 20px;
    margin-bottom: 30px;
    border-left: 4px solid var(--accent-color);
}

.selected-service-display.active {
    background-color: #e8f5e9;
}

.selected-service-display p {
    margin: 0;
    font-size: 16px;
    color: var(--text-dark);
}

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

.form-group label {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px;
    font-size: 16px;
    border: 2px solid var(--border-color);
    background-color: var(--bg-white);
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-submit {
    width: 100%;
    padding: 16px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
}

.btn-submit:disabled {
    background-color: #cccccc;
    cursor: not-allowed;
}

.trust-indicators-offset {
    background-color: var(--bg-light);
    padding: 80px 40px;
}

.trust-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    gap: 60px;
}

.trust-item {
    text-align: center;
}

.trust-number {
    font-size: 56px;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 10px;
}

.trust-item p {
    font-size: 18px;
    color: var(--text-dark);
}

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

.footer-content {
    max-width: 1400px;
    margin: 0 auto 50px;
    display: flex;
    gap: 80px;
}

.footer-block {
    flex: 1;
}

.footer-block h3 {
    font-size: 22px;
    margin-bottom: 20px;
    color: var(--accent-color);
}

.footer-block p {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
}

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

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

.footer-block ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
}

.footer-block ul li a:hover {
    color: var(--accent-color);
}

.footer-disclaimer {
    max-width: 1400px;
    margin: 0 auto 40px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-disclaimer p {
    font-size: 13px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.6);
}

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

.footer-bottom p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

.about-hero-offset {
    max-width: 1400px;
    margin: 60px auto 80px;
    padding: 0 40px;
}

.about-hero-content h1 {
    font-size: 64px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.about-hero-content p {
    font-size: 24px;
    color: var(--text-light);
}

.about-story-asymmetric {
    max-width: 1400px;
    margin: 100px auto;
    padding: 0 40px;
    display: flex;
    gap: 80px;
    align-items: center;
}

.story-block-right {
    flex: 1.2;
    order: 2;
    padding-left: 40px;
}

.story-block-right h2 {
    font-size: 42px;
    color: var(--primary-color);
    margin-bottom: 30px;
}

.story-block-right p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 25px;
    line-height: 1.7;
}

.story-image-left {
    flex: 1;
    order: 1;
    background-color: var(--bg-light);
}

.story-image-left img {
    width: 100%;
    height: 480px;
    object-fit: cover;
}

.philosophy-overlap {
    background-color: var(--bg-light);
    padding: 100px 40px;
}

.philosophy-content {
    max-width: 1400px;
    margin: 0 auto;
}

.philosophy-content h2 {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 60px;
    text-align: center;
}

.philosophy-grid {
    display: flex;
    gap: 50px;
}

.philosophy-card {
    flex: 1;
    background-color: var(--bg-white);
    padding: 45px;
    border-top: 4px solid var(--accent-color);
}

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

.philosophy-card p {
    font-size: 17px;
    color: var(--text-light);
    line-height: 1.7;
}

.team-staggered {
    max-width: 1400px;
    margin: 120px auto;
    padding: 0 40px;
}

.team-staggered h2 {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 50px;
}

.team-content-offset {
    display: flex;
    gap: 80px;
    align-items: center;
}

.team-intro {
    flex: 1.3;
}

.team-intro p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 25px;
    line-height: 1.7;
}

.team-image-overlap {
    flex: 1;
    background-color: var(--bg-light);
}

.team-image-overlap img {
    width: 100%;
    height: 420px;
    object-fit: cover;
}

.values-asymmetric {
    background-color: var(--bg-light);
    padding: 100px 40px;
}

.values-asymmetric {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    gap: 100px;
    align-items: center;
}

.values-left {
    flex: 1.5;
}

.values-left h2 {
    font-size: 42px;
    color: var(--primary-color);
    margin-bottom: 30px;
}

.values-left p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 25px;
    line-height: 1.7;
}

.values-stats {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.stat-item {
    background-color: var(--bg-white);
    padding: 35px;
    text-align: center;
    border-left: 4px solid var(--accent-color);
}

.stat-number {
    display: block;
    font-size: 48px;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 10px;
}

.stat-label {
    display: block;
    font-size: 18px;
    color: var(--text-dark);
}

.cta-about-offset {
    max-width: 1400px;
    margin: 120px auto;
    padding: 80px 40px;
    background-color: var(--primary-color);
    text-align: center;
}

.cta-content h2 {
    font-size: 42px;
    color: white;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
}

.btn-cta {
    display: inline-block;
    padding: 16px 40px;
    background-color: var(--accent-color);
    color: var(--text-dark);
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

.services-hero {
    max-width: 1400px;
    margin: 60px auto 80px;
    padding: 0 40px;
    text-align: center;
}

.services-hero h1 {
    font-size: 58px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.services-hero p {
    font-size: 22px;
    color: var(--text-light);
}

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

.service-detail {
    display: flex;
    gap: 80px;
    align-items: center;
    margin-bottom: 120px;
}

.service-detail-image {
    flex: 1;
    background-color: var(--bg-light);
}

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

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

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

.service-detail-content > p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 30px;
    line-height: 1.7;
}

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

.service-features ul {
    margin-bottom: 30px;
}

.service-features ul li {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.service-features ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 20px;
}

.service-price-block {
    display: flex;
    align-items: baseline;
    gap: 15px;
    margin-bottom: 25px;
}

.price-label {
    font-size: 16px;
    color: var(--text-light);
}

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

.service-offset-2 {
    flex-direction: row-reverse;
}

.pricing-note-section {
    max-width: 1400px;
    margin: 80px auto;
    padding: 60px 40px;
    background-color: var(--bg-light);
}

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

.pricing-note-content h2 {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 25px;
}

.pricing-note-content p {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.7;
}

.contact-hero-offset {
    max-width: 1400px;
    margin: 60px auto 80px;
    padding: 0 40px 0 150px;
}

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

.contact-hero-offset p {
    font-size: 22px;
    color: var(--text-light);
}

.contact-main-asymmetric {
    max-width: 1400px;
    margin: 100px auto;
    padding: 0 40px;
    display: flex;
    gap: 80px;
}

.contact-info-block {
    flex: 1.2;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.contact-card {
    background-color: var(--bg-light);
    padding: 40px;
}

.contact-card h2 {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 25px;
}

.contact-card h3 {
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 12px;
    margin-top: 20px;
}

.contact-card h3:first-of-type {
    margin-top: 0;
}

.contact-card p {
    font-size: 17px;
    color: var(--text-light);
    line-height: 1.7;
}

.contact-detail {
    margin-bottom: 20px;
}

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

.transport-list li {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

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

.contact-image-offset {
    flex: 1;
    background-color: var(--bg-light);
}

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

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

.faq-asymmetric h2 {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 60px;
    text-align: center;
}

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

.faq-item {
    flex: 0 0 calc(50% - 20px);
    background-color: var(--bg-light);
    padding: 35px;
}

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

.faq-item p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.7;
}

.thanks-hero {
    max-width: 1000px;
    margin: 80px auto;
    padding: 0 40px;
    text-align: center;
}

.thanks-content h1 {
    font-size: 54px;
    color: var(--primary-color);
    margin-bottom: 25px;
}

.thanks-content > p {
    font-size: 22px;
    color: var(--text-light);
    margin-bottom: 50px;
}

.thanks-details {
    background-color: var(--bg-light);
    padding: 40px;
    margin-bottom: 60px;
    text-align: left;
}

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

.thanks-service-info p {
    font-size: 18px;
    color: var(--text-light);
}

.thanks-next-steps {
    margin-bottom: 60px;
}

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

.steps-grid {
    display: flex;
    gap: 40px;
    text-align: left;
}

.step-item {
    flex: 1;
    background-color: var(--bg-light);
    padding: 35px;
}

.step-icon {
    font-size: 42px;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 20px;
}

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

.step-item p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.6;
}

.thanks-cta {
    margin-bottom: 60px;
}

.thanks-cta p {
    font-size: 18px;
    color: var(--text-dark);
    margin-bottom: 30px;
}

.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 14px 35px;
    text-decoration: none;
    font-size: 17px;
    font-weight: 600;
    margin: 0 10px;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

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

.info-blocks {
    display: flex;
    gap: 40px;
}

.info-card {
    flex: 1;
    background-color: var(--bg-light);
    padding: 40px;
    text-align: center;
}

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

.info-card p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.6;
}

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

.legal-content h1 {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 30px;
}

.legal-content h2 {
    font-size: 32px;
    color: var(--primary-color);
    margin-top: 50px;
    margin-bottom: 20px;
}

.legal-content h3 {
    font-size: 24px;
    color: var(--primary-color);
    margin-top: 30px;
    margin-bottom: 15px;
}

.legal-content h4 {
    font-size: 20px;
    color: var(--primary-color);
    margin-top: 25px;
    margin-bottom: 12px;
}

.legal-content p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.7;
}

.legal-content ul,
.legal-content ol {
    margin-bottom: 25px;
    padding-left: 30px;
}

.legal-content ul li,
.legal-content ol li {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 10px;
    line-height: 1.7;
}

.legal-content a {
    color: var(--accent-color);
    text-decoration: none;
    word-break: break-all;
}

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

.cookie-table {
    background-color: var(--bg-light);
    padding: 25px;
    margin-bottom: 25px;
    border-left: 4px solid var(--accent-color);
}

@media (max-width: 1200px) {
    .hero-asymmetric {
        flex-direction: column;
    }

    .hero-image-overlap {
        margin-left: 0;
        width: 100%;
    }

    .services-asymmetric-grid {
        flex-direction: column;
    }

    .service-card-offset-1,
    .service-card-offset-2,
    .service-card-offset-3,
    .service-card-offset-4,
    .service-card-offset-5,
    .service-card-offset-6 {
        width: 100%;
        margin-left: 0;
    }

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

    .testimonial-offset-1,
    .testimonial-offset-2,
    .testimonial-offset-3 {
        margin-top: 0;
    }

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

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

    .info-blocks {
        flex-direction: column;
    }

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

    .faq-item {
        flex: 0 0 100%;
    }
}

@media (max-width: 768px) {
    .nav-links {
        gap: 20px;
        font-size: 14px;
    }

    .hero-title-large {
        font-size: 42px;
    }

    .intro-offset {
        flex-direction: column;
    }

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

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

    .service-offset-2 {
        flex-direction: column;
    }

    .about-story-asymmetric {
        flex-direction: column;
    }

    .team-content-offset {
        flex-direction: column;
    }

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

    .contact-main-asymmetric {
        flex-direction: column;
    }
}