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

:root {
    --primary-color: #2c3e50;
    --secondary-color: #e67e22;
    --accent-color: #3498db;
    --text-color: #333;
    --light-bg: #f8f9fa;
    --dark-bg: #1a252f;
    --border-color: #ddd;
}

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

.hidden {
    display: none !important;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark-bg);
    color: #fff;
    padding: 1.5rem;
    z-index: 9999;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

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

.cookie-content p {
    flex: 1;
    min-width: 250px;
}

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

.btn-cookie {
    padding: 0.75rem 1.5rem;
    border: none;
    background: var(--secondary-color);
    color: #fff;
    cursor: pointer;
    font-size: 1rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

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

.btn-cookie.btn-secondary {
    background: transparent;
    border: 1px solid #fff;
}

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

.main-nav {
    background: #fff;
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.nav-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.ad-disclosure {
    font-size: 0.75rem;
    color: #666;
    padding: 0.25rem 0.75rem;
    background: var(--light-bg);
    border-radius: 3px;
}

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

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

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

.hero-asymmetric {
    display: flex;
    min-height: 80vh;
    background: var(--light-bg);
    position: relative;
    overflow: hidden;
}

.hero-content-offset {
    flex: 1;
    padding: 4rem 2rem 4rem 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 600px;
    margin-left: 5%;
}

.hero-content-offset h1 {
    font-size: 3rem;
    line-height: 1.2;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #555;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.cta-hero {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--secondary-color);
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.cta-hero:hover {
    background: #d35400;
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(230, 126, 34, 0.3);
}

.hero-image-block {
    flex: 1;
    position: relative;
    clip-path: polygon(15% 0, 100% 0, 100% 100%, 0 100%);
    background: #ccc;
}

.hero-image-block img {
    width: 100%;
    height: 100%;
    display: block;
}

.intro-offset {
    display: flex;
    padding: 6rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
    gap: 3rem;
    align-items: center;
}

.intro-text-narrow {
    flex: 1.2;
    padding-right: 3rem;
}

.intro-text-narrow h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.intro-text-narrow p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
}

.intro-image-float {
    flex: 0.8;
    position: relative;
    background: var(--light-bg);
}

.intro-image-float img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.services-grid-asymmetric {
    background: #fff;
    padding: 5rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.services-intro-block {
    text-align: left;
    margin-bottom: 4rem;
    margin-left: 10%;
}

.services-intro-block h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.services-intro-block p {
    font-size: 1.2rem;
    color: #666;
}

.service-card {
    display: flex;
    margin-bottom: 3rem;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

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

.card-offset-1 {
    margin-left: 5%;
    max-width: 900px;
}

.card-offset-2 {
    margin-left: 15%;
    max-width: 850px;
}

.card-offset-3 {
    margin-left: 25%;
    max-width: 800px;
}

.card-offset-4 {
    margin-left: 8%;
    max-width: 880px;
}

.card-offset-5 {
    margin-left: 18%;
    max-width: 820px;
}

.service-image {
    flex: 0.4;
    background: var(--light-bg);
}

.service-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.service-content {
    flex: 0.6;
    padding: 2rem;
    display: flex;
    flex-direction: column;
}

.service-content h3 {
    font-size: 1.75rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.service-content p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.service-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.btn-select-service {
    padding: 0.875rem 2rem;
    background: var(--accent-color);
    color: #fff;
    border: none;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.3s ease;
}

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

.trust-diagonal {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--dark-bg) 100%);
    padding: 5rem 2rem;
    clip-path: polygon(0 5%, 100% 0, 100% 95%, 0 100%);
    margin: 4rem 0;
}

.trust-content {
    max-width: 1000px;
    margin: 0 auto;
    color: #fff;
}

.trust-content h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
}

.trust-points {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.trust-point {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.trust-icon {
    font-size: 2rem;
    color: var(--secondary-color);
    background: rgba(255,255,255,0.1);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
}

.trust-point p {
    font-size: 1.1rem;
    line-height: 1.6;
}

.form-section-offset {
    background: var(--light-bg);
    padding: 5rem 2rem;
}

.form-container-asymmetric {
    max-width: 700px;
    margin: 0 auto 0 15%;
    background: #fff;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.form-intro h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

.form-intro p {
    color: #666;
    margin-bottom: 2rem;
}

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

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

.form-group label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.form-group input,
.form-group textarea {
    padding: 0.875rem;
    border: 2px solid var(--border-color);
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

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

.selected-service-display {
    background: var(--light-bg);
    padding: 1rem;
    border-radius: 4px;
    border-left: 4px solid var(--secondary-color);
}

.selected-service-display p {
    margin-bottom: 0.5rem;
}

.btn-submit {
    padding: 1rem 2rem;
    background: var(--secondary-color);
    color: #fff;
    border: none;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: #d35400;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(230, 126, 34, 0.3);
}

.cta-floating {
    background: var(--accent-color);
    padding: 3rem 2rem;
    text-align: center;
    color: #fff;
    margin: 4rem 0;
    transform: skewY(-2deg);
}

.cta-content {
    transform: skewY(2deg);
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.btn-cta-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #fff;
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-cta-secondary:hover {
    background: var(--light-bg);
    transform: scale(1.05);
}

.main-footer {
    background: var(--dark-bg);
    color: #fff;
    padding: 3rem 2rem 1rem;
}

.footer-asymmetric {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

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

.footer-block h4 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.footer-block p {
    line-height: 1.6;
    color: #ccc;
}

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

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

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

.footer-block a:hover {
    color: var(--secondary-color);
}

.footer-disclaimer {
    max-width: 1400px;
    margin: 2rem auto;
    padding: 1.5rem;
    background: rgba(255,255,255,0.05);
    border-radius: 4px;
    font-size: 0.875rem;
    line-height: 1.6;
    color: #aaa;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    color: #888;
}

.page-hero-about {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    padding: 5rem 2rem;
    text-align: center;
    color: #fff;
}

.hero-text-block h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero-text-block p {
    font-size: 1.25rem;
    opacity: 0.9;
}

.about-story-section {
    display: flex;
    padding: 5rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
    gap: 3rem;
    align-items: center;
}

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

.story-image-left img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

.story-text-right {
    flex: 0.55;
    padding-left: 2rem;
}

.story-text-right h2 {
    font-size: 2.25rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.story-text-right p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.25rem;
}

.values-diagonal {
    background: var(--light-bg);
    padding: 5rem 2rem;
    clip-path: polygon(0 0, 100% 3%, 100% 100%, 0 97%);
    margin: 3rem 0;
}

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

.values-content h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 3rem;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.value-item {
    flex: 1 1 calc(50% - 1rem);
    min-width: 250px;
    padding: 2rem;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
}

.value-item h3 {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.value-item p {
    color: #555;
    line-height: 1.7;
}

.team-section-offset {
    padding: 5rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.team-intro {
    text-align: left;
    margin-bottom: 3rem;
    margin-left: 10%;
}

.team-intro h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.team-intro p {
    font-size: 1.1rem;
    color: #666;
}

.team-image-showcase {
    margin: 0 0 2rem 5%;
    max-width: 90%;
    background: var(--light-bg);
}

.team-image-showcase img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

.team-description {
    max-width: 800px;
    margin: 2rem auto 0 15%;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
}

.approach-section {
    background: var(--primary-color);
    padding: 5rem 2rem;
    color: #fff;
}

.approach-content-asymmetric {
    max-width: 1200px;
    margin: 0 auto;
}

.approach-content-asymmetric h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
}

.approach-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.step-block {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: rgba(255,255,255,0.05);
    border-radius: 8px;
    margin-left: calc(var(--step-offset, 0) * 5%);
}

.step-block:nth-child(1) {
    --step-offset: 0;
}

.step-block:nth-child(2) {
    --step-offset: 2;
}

.step-block:nth-child(3) {
    --step-offset: 4;
}

.step-block:nth-child(4) {
    --step-offset: 1;
}

.step-block:nth-child(5) {
    --step-offset: 3;
}

.step-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary-color);
    flex-shrink: 0;
}

.step-block h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.step-block p {
    color: #ddd;
    line-height: 1.7;
}

.cta-about {
    background: var(--secondary-color);
    padding: 4rem 2rem;
    text-align: center;
    color: #fff;
}

.services-hero {
    background: var(--primary-color);
    padding: 4rem 2rem;
    text-align: center;
    color: #fff;
}

.services-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.services-hero p {
    font-size: 1.25rem;
    opacity: 0.9;
}

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

.service-detail-card {
    display: flex;
    margin-bottom: 5rem;
    gap: 3rem;
    align-items: center;
}

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

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

.service-detail-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

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

.service-detail-content h2 {
    font-size: 2.25rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.service-detail-content > p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 2rem;
}

.service-features h3 {
    font-size: 1.25rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

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

.service-features li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.75rem;
    color: #555;
}

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

.service-pricing-box {
    display: flex;
    align-items: baseline;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: var(--light-bg);
    border-radius: 4px;
}

.price-label {
    font-size: 1rem;
    color: #666;
}

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

.services-cta {
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--primary-color) 100%);
    padding: 4rem 2rem;
    text-align: center;
    color: #fff;
    margin-top: 3rem;
}

.contact-hero {
    background: var(--primary-color);
    padding: 4rem 2rem;
    text-align: center;
    color: #fff;
}

.contact-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.contact-hero p {
    font-size: 1.25rem;
    opacity: 0.9;
}

.contact-main-section {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    padding: 5rem 2rem;
    gap: 3rem;
}

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

.contact-card {
    background: #fff;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    margin-bottom: 2rem;
}

.contact-card h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

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

.contact-detail h3 {
    font-size: 1.25rem;
    color: var(--secondary-color);
    margin-bottom: 0.75rem;
}

.contact-detail p {
    color: #555;
    line-height: 1.7;
}

.email-display {
    font-family: monospace;
    background: var(--light-bg);
    padding: 0.5rem;
    border-radius: 4px;
    display: inline-block;
}

.contact-note {
    padding: 1.5rem;
    background: var(--light-bg);
    border-left: 4px solid var(--accent-color);
    border-radius: 4px;
}

.contact-note p {
    color: #555;
    line-height: 1.7;
}

.contact-image-block {
    flex: 0.4;
    background: var(--light-bg);
}

.contact-image-block img {
    width: 100%;
    height: 100%;
    display: block;
    border-radius: 8px;
}

.location-section {
    background: var(--light-bg);
    padding: 4rem 2rem;
}

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

.location-content h2 {
    font-size: 2.25rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.location-content > p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 2rem;
}

.location-directions {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.direction-item {
    flex: 1;
    min-width: 250px;
    padding: 1.5rem;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
}

.direction-item h3 {
    font-size: 1.25rem;
    color: var(--secondary-color);
    margin-bottom: 0.75rem;
}

.direction-item p {
    color: #555;
    line-height: 1.7;
}

.contact-cta {
    background: var(--accent-color);
    padding: 4rem 2rem;
    text-align: center;
    color: #fff;
}

.thanks-section {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    background: var(--light-bg);
}

.thanks-content {
    max-width: 800px;
    background: #fff;
    padding: 4rem;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    text-align: center;
}

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

.thanks-content h1 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.thanks-message {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 2rem;
}

.thanks-details {
    background: var(--light-bg);
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    text-align: left;
}

.thanks-details h2 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.thanks-details p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 0.75rem;
}

.thanks-next-steps {
    text-align: left;
    margin-bottom: 2rem;
}

.thanks-next-steps h3 {
    font-size: 1.25rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.thanks-next-steps ul {
    list-style: none;
}

.thanks-next-steps li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.75rem;
    color: #555;
}

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

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

.btn-primary {
    padding: 1rem 2rem;
    background: var(--secondary-color);
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

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

.btn-secondary {
    padding: 1rem 2rem;
    background: transparent;
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    border: 2px solid var(--accent-color);
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: var(--accent-color);
    color: #fff;
}

.legal-page {
    background: var(--light-bg);
    padding: 4rem 2rem;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    background: #fff;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
}

.legal-content h1 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.updated-date {
    color: #888;
    font-size: 0.9rem;
    margin-bottom: 2rem;
}

.legal-content h2 {
    font-size: 1.75rem;
    color: var(--primary-color);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.legal-content h3 {
    font-size: 1.25rem;
    color: var(--secondary-color);
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.legal-content p {
    line-height: 1.8;
    color: #555;
    margin-bottom: 1rem;
}

.legal-content ul {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.legal-content li {
    line-height: 1.8;
    color: #555;
    margin-bottom: 0.5rem;
}

.legal-content a {
    color: var(--accent-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
}

.cookie-table th,
.cookie-table td {
    padding: 0.875rem;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.cookie-table th {
    background: var(--light-bg);
    color: var(--primary-color);
    font-weight: 600;
}

.cookie-table td {
    color: #555;
}

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

    .hero-content-offset {
        margin-left: 0;
        max-width: 100%;
    }

    .hero-image-block {
        clip-path: none;
        min-height: 400px;
    }

    .intro-offset,
    .about-story-section,
    .service-detail-card {
        flex-direction: column;
    }

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

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

    .nav-links {
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .hero-content-offset h1,
    .page-hero-about h1,
    .services-hero h1 {
        font-size: 2rem;
    }

    .intro-text-narrow h2,
    .values-content h2,
    .team-intro h2,
    .approach-content-asymmetric h2 {
        font-size: 1.75rem;
    }

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

    .form-container-asymmetric {
        margin: 0 auto;
    }

    .trust-diagonal,
    .values-diagonal {
        clip-path: none;
    }

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

    .nav-container {
        flex-direction: column;
        align-items: flex-start;
    }

    .nav-links {
        flex-wrap: wrap;
    }

    .step-block {
        margin-left: 0 !important;
    }
}