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

:root {
    --primary-color: #1a365d;
    --secondary-color: #2d5f3e;
    --accent-color: #d97706;
    --text-dark: #1a202c;
    --text-light: #4a5568;
    --bg-light: #f7fafc;
    --bg-white: #ffffff;
    --border-color: #e2e8f0;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

button {
    cursor: pointer;
    border: none;
    font-family: inherit;
    transition: all 0.3s ease;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--primary-color);
    color: white;
    padding: 20px;
    z-index: 1000;
    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: 250px;
    margin: 0;
}

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

.btn-cookie {
    padding: 10px 24px;
    background-color: var(--secondary-color);
    color: white;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
}

.btn-cookie:hover {
    background-color: #245a34;
}

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

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

.header-asymmetric {
    background-color: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    padding: 20px 40px;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.brand-container {
    flex: 0 0 auto;
}

.brand {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
}

.brand:hover {
    color: var(--accent-color);
}

.ad-disclosure {
    background-color: #fef3c7;
    color: #92400e;
    padding: 6px 14px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    border: 1px solid #fde68a;
}

.nav-split {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.nav-split a {
    font-weight: 500;
    color: var(--text-dark);
    padding: 8px 0;
    position: relative;
}

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

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

.hero-asymmetric {
    display: flex;
    min-height: 600px;
    position: relative;
    overflow: hidden;
}

.hero-visual {
    flex: 0 0 58%;
    position: relative;
}

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

.hero-text-offset {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: var(--bg-light);
}

.hero-text-offset h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: var(--primary-color);
}

.hero-text-offset p {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 36px;
}

.cta-primary {
    display: inline-block;
    padding: 16px 40px;
    background-color: var(--secondary-color);
    color: white;
    border-radius: 6px;
    font-weight: 600;
    font-size: 18px;
    align-self: flex-start;
}

.cta-primary:hover {
    background-color: #245a34;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(45, 95, 62, 0.3);
}

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

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

.intro-block-left h2 {
    font-size: 36px;
    line-height: 1.3;
    color: var(--primary-color);
    margin-bottom: 24px;
}

.intro-block-left p {
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.8;
}

.intro-image-right {
    flex: 0 0 45%;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.intro-image-right img {
    width: 100%;
    height: 100%;
    min-height: 400px;
}

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

.section-header-asymmetric {
    max-width: 700px;
    margin: 0 0 80px 120px;
}

.section-header-asymmetric h2 {
    font-size: 42px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.section-header-asymmetric p {
    font-size: 19px;
    color: var(--text-light);
}

.service-cards-offset {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.service-card {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

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

.service-card.card-large {
    flex: 1 1 calc(60% - 15px);
    min-width: 350px;
}

.service-card.card-medium {
    flex: 1 1 calc(48% - 15px);
    min-width: 320px;
}

.service-card.card-small {
    flex: 1 1 calc(35% - 15px);
    min-width: 300px;
}

.card-image {
    height: 250px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
}

.card-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

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

.card-content p {
    color: var(--text-light);
    margin-bottom: 20px;
    flex: 1;
}

.price-tag {
    font-size: 28px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.select-service {
    padding: 14px 28px;
    background-color: var(--accent-color);
    color: white;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
}

.select-service:hover {
    background-color: #b45309;
}

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

.form-container-asymmetric {
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

.form-intro {
    flex: 0 0 40%;
}

.form-intro h2 {
    font-size: 38px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.form-intro p {
    font-size: 18px;
    color: var(--text-light);
}

.contact-form {
    flex: 1;
    background-color: var(--bg-light);
    padding: 40px;
    border-radius: 10px;
}

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

.selected-service-display p {
    margin-bottom: 8px;
    color: var(--text-dark);
}

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

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

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

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

.btn-submit {
    padding: 16px 48px;
    background-color: var(--secondary-color);
    color: white;
    border-radius: 6px;
    font-weight: 600;
    font-size: 18px;
    width: 100%;
}

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

.trust-section {
    background-color: white;
    padding: 120px 40px;
}

.trust-content-split {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    align-items: center;
}

.trust-text {
    flex: 1;
}

.trust-text h2 {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 32px;
}

.benefits-list {
    list-style: none;
}

.benefits-list li {
    padding: 16px 0;
    border-bottom: 1px solid var(--border-color);
    font-size: 18px;
    color: var(--text-dark);
    position: relative;
    padding-left: 32px;
}

.benefits-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: 700;
    font-size: 20px;
}

.trust-visual {
    flex: 0 0 45%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.trust-visual img {
    width: 100%;
    height: 100%;
    min-height: 450px;
}

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

.disclaimer-box {
    max-width: 900px;
    margin: 0 auto;
}

.disclaimer-box h3 {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.disclaimer-box p {
    font-size: 15px;
    color: var(--text-dark);
    line-height: 1.7;
}

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

.footer-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-brand {
    flex: 1 1 300px;
}

.footer-brand h3 {
    font-size: 24px;
    margin-bottom: 16px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.8);
}

.footer-links {
    flex: 1 1 200px;
}

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

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

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

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
}

.footer-links a:hover {
    color: white;
}

.footer-contact {
    flex: 1 1 250px;
}

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

.footer-contact p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 10px;
}

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

.about-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, #2d5f3e 100%);
    color: white;
    padding: 120px 40px 80px;
    text-align: center;
}

.about-hero-content h1 {
    font-size: 52px;
    margin-bottom: 20px;
}

.about-hero-content p {
    font-size: 22px;
    opacity: 0.9;
}

.story-section-offset {
    max-width: 1400px;
    margin: 100px auto;
    padding: 0 40px;
    display: flex;
    gap: 70px;
    align-items: center;
}

.story-image {
    flex: 0 0 48%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.story-image img {
    width: 100%;
    height: 100%;
    min-height: 450px;
}

.story-text {
    flex: 1;
}

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

.story-text p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.8;
}

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

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

.values-grid-irregular {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.value-card {
    background-color: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.value-card.value-large {
    flex: 1 1 calc(55% - 15px);
    min-width: 300px;
}

.value-card.value-medium {
    flex: 1 1 calc(48% - 15px);
    min-width: 280px;
}

.value-card.value-small {
    flex: 1 1 calc(40% - 15px);
    min-width: 260px;
}

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

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

.team-section {
    max-width: 1200px;
    margin: 100px auto;
    padding: 0 40px;
}

.team-intro {
    text-align: center;
    margin-bottom: 60px;
}

.team-intro h2 {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.team-intro p {
    font-size: 19px;
    color: var(--text-light);
}

.team-stats {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 40px;
}

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

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

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

.approach-section-split {
    background-color: var(--bg-light);
    padding: 100px 40px;
}

.approach-section-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    gap: 80px;
    align-items: center;
}

.approach-content {
    flex: 1;
}

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

.approach-content > p {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 40px;
}

.approach-steps {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.step-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.step-number {
    flex: 0 0 60px;
    height: 60px;
    background-color: var(--secondary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
}

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

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

.approach-visual {
    flex: 0 0 45%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.approach-visual img {
    width: 100%;
    height: 100%;
    min-height: 500px;
}

.cta-section-about {
    background-color: var(--primary-color);
    padding: 100px 40px;
}

.cta-box {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    color: white;
}

.cta-box h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

.cta-box p {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.9;
}

.btn-cta-large {
    display: inline-block;
    padding: 18px 50px;
    background-color: var(--accent-color);
    color: white;
    border-radius: 8px;
    font-weight: 600;
    font-size: 20px;
}

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

.services-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, #2d5f3e 100%);
    color: white;
    padding: 120px 40px 80px;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.services-hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.services-hero p {
    font-size: 20px;
    opacity: 0.9;
}

.services-detailed {
    max-width: 1400px;
    margin: 100px auto;
    padding: 0 40px;
    display: flex;
    flex-direction: column;
    gap: 100px;
}

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

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

.service-visual {
    flex: 0 0 48%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.service-visual img {
    width: 100%;
    height: 100%;
    min-height: 400px;
}

.service-info {
    flex: 1;
}

.service-info h2 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.service-info > p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 24px;
    line-height: 1.8;
}

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

.service-features li {
    padding: 12px 0;
    font-size: 16px;
    color: var(--text-dark);
    position: relative;
    padding-left: 28px;
}

.service-features li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: 700;
}

.service-pricing {
    margin-bottom: 24px;
}

.price-label {
    font-size: 16px;
    color: var(--text-light);
    display: block;
    margin-bottom: 4px;
}

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

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

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

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

.cta-content-centered p {
    font-size: 19px;
    color: var(--text-light);
    margin-bottom: 36px;
}

.btn-cta-secondary {
    display: inline-block;
    padding: 16px 42px;
    background-color: var(--secondary-color);
    color: white;
    border-radius: 6px;
    font-weight: 600;
    font-size: 18px;
}

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

.contact-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, #2d5f3e 100%);
    color: white;
    padding: 120px 40px 80px;
    text-align: center;
}

.contact-hero h1 {
    font-size: 52px;
    margin-bottom: 20px;
}

.contact-hero p {
    font-size: 22px;
    opacity: 0.9;
}

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

.contact-info-block {
    flex: 0 0 35%;
}

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

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

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

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

.contact-map-placeholder {
    flex: 1;
    border-radius: 12px;
    min-height: 500px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-overlay {
    text-align: center;
    padding: 40px;
}

.map-overlay p {
    color: var(--text-dark);
    font-size: 18px;
    margin-bottom: 8px;
}

.map-address {
    font-weight: 600;
    font-size: 16px;
}

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

.form-wrapper-contact {
    max-width: 800px;
    margin: 0 auto;
}

.form-wrapper-contact h2 {
    font-size: 38px;
    color: var(--primary-color);
    margin-bottom: 16px;
}

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

.contact-additional {
    max-width: 900px;
    margin: 100px auto;
    padding: 0 40px;
    text-align: center;
}

.additional-info h2 {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.additional-info p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 32px;
}

.additional-links {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.link-item {
    padding: 14px 28px;
    background-color: var(--bg-light);
    border: 2px solid var(--border-color);
    border-radius: 6px;
    color: var(--text-dark);
    font-weight: 600;
}

.link-item:hover {
    border-color: var(--secondary-color);
    background-color: white;
}

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

.thanks-content {
    text-align: center;
}

.thanks-icon {
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
}

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

.thanks-message {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 40px;
}

.submission-details {
    background-color: var(--bg-light);
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 60px;
    text-align: left;
}

.submission-details h3 {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.submission-details p {
    font-size: 17px;
    color: var(--text-dark);
    margin-bottom: 10px;
}

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

.steps-timeline {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 60px;
}

.timeline-step {
    display: flex;
    gap: 24px;
    align-items: flex-start;
    text-align: left;
}

.step-marker {
    flex: 0 0 50px;
    height: 50px;
    background-color: var(--secondary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 700;
}

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

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

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

.btn-primary {
    padding: 16px 40px;
    background-color: var(--secondary-color);
    color: white;
    border-radius: 6px;
    font-weight: 600;
    font-size: 17px;
}

.btn-primary:hover {
    background-color: #245a34;
}

.btn-secondary {
    padding: 16px 40px;
    background-color: transparent;
    border: 2px solid var(--secondary-color);
    color: var(--secondary-color);
    border-radius: 6px;
    font-weight: 600;
    font-size: 17px;
}

.btn-secondary:hover {
    background-color: var(--bg-light);
}

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

.reminder-box {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.reminder-box h3 {
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.reminder-box p {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 8px;
}

.office-hours {
    font-weight: 600;
    color: var(--text-dark);
}

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

.legal-content {
    line-height: 1.8;
}

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

.last-updated {
    color: var(--text-light);
    font-size: 14px;
    margin-bottom: 40px;
}

.legal-content h2 {
    font-size: 28px;
    color: var(--primary-color);
    margin-top: 40px;
    margin-bottom: 16px;
}

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

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

.legal-content p {
    margin-bottom: 16px;
    color: var(--text-dark);
}

.legal-content ul {
    margin-bottom: 20px;
    margin-left: 24px;
}

.legal-content li {
    margin-bottom: 10px;
    color: var(--text-dark);
}

.legal-content a {
    color: var(--secondary-color);
    text-decoration: underline;
}

.legal-content a:hover {
    color: var(--accent-color);
}

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

    .hero-visual {
        flex: 0 0 100%;
        height: 400px;
    }

    .intro-offset,
    .trust-content-split,
    .story-section-offset,
    .approach-section-split,
    .service-detail-asymmetric,
    .contact-content-split {
        flex-direction: column;
    }

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

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .nav-split {
        width: 100%;
    }

    .hero-text-offset h1 {
        font-size: 36px;
    }

    .form-container-asymmetric {
        flex-direction: column;
    }

    .service-card {
        flex: 1 1 100%;
    }

    .cookie-content {
        flex-direction: column;
    }
}