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

:root {
    --primary-color: #2c3e50;
    --secondary-color: #e74c3c;
    --accent-color: #3498db;
    --text-dark: #2c3e50;
    --text-light: #7f8c8d;
    --bg-light: #ecf0f1;
    --bg-white: #ffffff;
    --border-color: #bdc3c7;
    --success-color: #2ecc71;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    line-height: 1.3;
    margin-bottom: 1rem;
    font-weight: 600;
}

h1 {
    font-size: 2.8rem;
}

h2 {
    font-size: 2.2rem;
}

h3 {
    font-size: 1.6rem;
}

p {
    margin-bottom: 1rem;
}

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

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

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-fluid {
    width: 100%;
    padding: 0 20px;
}

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

.container-split {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 50px;
}

.nav-asymmetric {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    z-index: 1000;
}

.nav-brand a {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: -0.5px;
}

.nav-menu {
    display: flex;
    gap: 35px;
    align-items: center;
}

.nav-link {
    color: var(--text-dark);
    font-weight: 500;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--secondary-color);
}

.nav-cta {
    background: var(--secondary-color);
    color: white;
    padding: 10px 25px;
    border-radius: 5px;
    font-weight: 600;
    transition: background 0.3s ease;
}

.nav-cta:hover {
    background: #c0392b;
    color: white;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 5px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    transition: all 0.3s ease;
}

.hero-asymmetric {
    margin-top: 80px;
    min-height: 85vh;
    display: flex;
    position: relative;
    overflow: hidden;
}

.hero-content-offset {
    position: relative;
    z-index: 10;
    flex: 1;
    display: flex;
    align-items: center;
    padding: 80px 60px 80px 100px;
    background: linear-gradient(135deg, rgba(255,255,255,0.95) 0%, rgba(236,240,241,0.9) 100%);
}

.hero-text-block {
    max-width: 600px;
}

.hero-title {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 35px;
    line-height: 1.7;
}

.hero-visual-layer {
    position: absolute;
    right: 0;
    top: 0;
    width: 55%;
    height: 100%;
    overflow: hidden;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.05);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, rgba(255,255,255,0.8) 0%, transparent 100%);
}

.btn-primary {
    display: inline-block;
    background: var(--secondary-color);
    color: white;
    padding: 15px 40px;
    border-radius: 5px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background: #c0392b;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(231, 76, 60, 0.3);
}

.btn-primary.btn-large {
    padding: 20px 50px;
    font-size: 1.2rem;
}

.btn-outline {
    display: inline-block;
    background: transparent;
    color: var(--primary-color);
    padding: 12px 30px;
    border: 2px solid var(--primary-color);
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

.btn-secondary {
    background: var(--text-light);
}

.btn-secondary:hover {
    background: #6c7a7b;
}

.intro-offset {
    padding: 120px 0;
    background: var(--bg-white);
}

.intro-card-left {
    flex: 1;
    max-width: 550px;
    padding: 50px;
    background: var(--bg-light);
    border-radius: 10px;
    margin-left: 80px;
}

.intro-visual-right {
    flex: 1;
    margin-left: -50px;
    margin-top: 50px;
}

.intro-visual-right img {
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

.services-highlight {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--bg-white) 0%, var(--bg-light) 100%);
}

.services-intro-asymmetric {
    max-width: 700px;
    margin: 0 0 60px 100px;
}

.section-label {
    display: inline-block;
    color: var(--secondary-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.services-grid-offset {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    padding: 0 60px;
}

.service-card {
    flex: 1 1 calc(33.333% - 40px);
    min-width: 280px;
    background: white;
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    position: relative;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.service-card-offset-1 {
    margin-top: 0;
}

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

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

.service-card-offset-4 {
    margin-top: 60px;
}

.service-card-offset-5 {
    margin-top: 30px;
}

.service-card-offset-6 {
    margin-top: 50px;
}

.service-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    opacity: 0.8;
}

.service-icon img {
    width: 100%;
    height: 100%;
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.7;
}

.service-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin: 20px 0;
}

.philosophy-section {
    padding: 100px 0;
    background: var(--bg-white);
}

.philosophy-text {
    flex: 1;
    max-width: 550px;
    padding-right: 40px;
}

.philosophy-visual {
    flex: 1;
    min-width: 400px;
}

.philosophy-visual img {
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.12);
}

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

.testimonials-title {
    text-align: center;
    color: white;
    margin-bottom: 60px;
}

.testimonials-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.testimonial-card {
    flex: 1 1 calc(33.333% - 40px);
    min-width: 280px;
    max-width: 400px;
    background: rgba(255,255,255,0.1);
    padding: 35px;
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

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

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

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

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 25px;
    font-style: italic;
    color: rgba(255,255,255,0.95);
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.testimonial-author strong {
    color: white;
    font-size: 1.1rem;
}

.testimonial-author span {
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
}

.process-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.process-intro {
    max-width: 600px;
    margin-bottom: 50px;
    margin-left: 60px;
}

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

.process-step {
    flex: 1 1 calc(25% - 50px);
    min-width: 220px;
    padding: 30px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.step-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--secondary-color);
    opacity: 0.3;
    margin-bottom: 15px;
}

.process-step h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.process-step p {
    color: var(--text-light);
    line-height: 1.6;
}

.cta-visual-section {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    text-align: center;
}

.cta-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.5);
}

.cta-overlay-content {
    position: relative;
    z-index: 10;
    color: white;
    max-width: 700px;
    padding: 60px 40px;
}

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

.cta-overlay-content p {
    font-size: 1.3rem;
    margin-bottom: 35px;
}

.contact-form-section {
    padding: 100px 0;
    background: var(--bg-white);
}

.form-intro-text {
    max-width: 600px;
    margin: 0 auto 50px;
    text-align: center;
}

.contact-form {
    max-width: 700px;
    margin: 0 auto;
    background: var(--bg-light);
    padding: 50px;
    border-radius: 10px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--border-color);
    border-radius: 5px;
    font-size: 1rem;
    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(--accent-color);
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 30px;
}

.form-checkbox input[type="checkbox"] {
    margin-top: 4px;
    width: 18px;
    height: 18px;
}

.form-checkbox label {
    font-size: 0.95rem;
    color: var(--text-light);
}

.btn-submit {
    width: 100%;
    padding: 15px;
    font-size: 1.1rem;
}

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

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    margin-bottom: 40px;
}

.footer-col {
    flex: 1 1 220px;
}

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

.footer-col h3,
.footer-col h4 {
    color: white;
    margin-bottom: 20px;
}

.footer-col p {
    color: rgba(255,255,255,0.8);
    line-height: 1.8;
}

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

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: rgba(255,255,255,0.8);
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: white;
}

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

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

.sticky-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    opacity: 0;
    transform: translateY(100px);
    transition: all 0.3s ease;
}

.sticky-cta.visible {
    opacity: 1;
    transform: translateY(0);
}

.sticky-cta-btn {
    display: block;
    background: var(--secondary-color);
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 5px 20px rgba(231, 76, 60, 0.4);
    transition: all 0.3s ease;
}

.sticky-cta-btn:hover {
    background: #c0392b;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(231, 76, 60, 0.5);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(44, 62, 80, 0.98);
    color: white;
    padding: 20px;
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-banner.show {
    transform: translateY(0);
}

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

.cookie-content p {
    flex: 1 1 300px;
    margin: 0;
    line-height: 1.6;
}

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

.btn-cookie {
    padding: 10px 25px;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    background: var(--success-color);
    color: white;
}

.btn-cookie:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.page-hero-about,
.page-hero-services,
.page-hero-contact {
    padding: 150px 0 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #34495e 100%);
    color: white;
    text-align: center;
}

.page-hero-about h1,
.page-hero-services h1,
.page-hero-contact h1 {
    color: white;
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.hero-lead {
    font-size: 1.3rem;
    color: rgba(255,255,255,0.9);
    max-width: 700px;
    margin: 0 auto;
}

.story-section {
    padding: 100px 0;
    background: var(--bg-white);
}

.story-visual-left {
    flex: 1;
    min-width: 350px;
    margin-right: 50px;
}

.story-visual-left img {
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.12);
}

.story-text-right {
    flex: 1;
    max-width: 600px;
}

.values-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.section-title-center {
    text-align: center;
    margin-bottom: 60px;
}

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

.value-card {
    flex: 1 1 calc(50% - 40px);
    min-width: 280px;
    background: white;
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.value-card h3 {
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.team-section {
    padding: 100px 0;
    background: var(--bg-white);
}

.team-layout-asymmetric {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    margin-top: 60px;
}

.team-member {
    flex: 1 1 calc(33.333% - 50px);
    min-width: 280px;
    text-align: center;
}

.team-member-offset-1 {
    margin-top: 0;
}

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

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

.team-photo {
    width: 200px;
    height: 200px;
    margin: 0 auto 25px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

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

.approach-text {
    flex: 1;
    max-width: 550px;
    padding-right: 40px;
}

.approach-visual {
    flex: 1;
    min-width: 400px;
}

.approach-visual img {
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.12);
}

.cta-inline-section {
    padding: 80px 0;
    background: var(--secondary-color);
    color: white;
    text-align: center;
}

.cta-inline-section h2 {
    color: white;
    margin-bottom: 15px;
}

.cta-inline-section p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.services-detailed {
    padding: 80px 0;
    background: var(--bg-white);
}

.service-detail-card {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 60px;
    margin-bottom: 80px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

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

.service-detail-visual {
    flex: 1;
    min-width: 350px;
}

.service-detail-visual img {
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.12);
}

.service-detail-content {
    flex: 1;
    min-width: 350px;
}

.service-detail-price {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin: 20px 0;
}

.service-detail-content ul {
    margin: 20px 0 30px 20px;
    list-style: none;
}

.service-detail-content ul li {
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
    color: var(--text-light);
}

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

.service-highlight {
    background: var(--bg-light);
    padding: 50px;
    border-radius: 15px;
    border: 3px solid var(--secondary-color);
}

.faq-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    padding: 30px;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.06);
}

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

.faq-item p {
    color: var(--text-light);
    line-height: 1.7;
    margin: 0;
}

.cta-services-bottom,
.cta-contact-bottom {
    padding: 80px 0;
    background: var(--accent-color);
    color: white;
    text-align: center;
}

.cta-services-bottom h2,
.cta-contact-bottom h2 {
    color: white;
    margin-bottom: 15px;
}

.cta-services-bottom p,
.cta-contact-bottom p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.contact-info-section {
    padding: 80px 0;
    background: var(--bg-white);
}

.contact-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    align-items: flex-start;
}

.contact-info-block {
    flex: 1;
    min-width: 300px;
}

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

.contact-detail h3 {
    color: var(--secondary-color);
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.contact-note {
    font-size: 0.9rem;
    color: var(--text-light);
    font-style: italic;
    margin-top: 10px;
}

.contact-map-placeholder {
    flex: 1;
    min-width: 350px;
    min-height: 400px;
    background: var(--bg-light);
    border-radius: 10px;
    overflow: hidden;
}

.contact-map-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-additional {
    padding: 80px 0;
    background: var(--bg-light);
}

.communication-options {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1200px;
    margin: 40px auto 0;
}

.comm-option {
    flex: 1 1 calc(33.333% - 40px);
    min-width: 280px;
    background: white;
    padding: 35px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.comm-option h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.faq-contact-section {
    padding: 80px 0;
    background: var(--bg-white);
}

.thanks-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 20px 80px;
    background: linear-gradient(135deg, var(--bg-light) 0%, white 100%);
}

.thanks-content {
    max-width: 800px;
    text-align: center;
}

.thanks-icon {
    margin: 0 auto 30px;
    width: 80px;
    height: 80px;
}

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

.thanks-message {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 30px;
}

.thanks-details {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    margin-bottom: 40px;
}

.thanks-next-steps {
    margin: 50px 0;
}

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

.next-steps-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    margin-top: 30px;
}

.next-step {
    flex: 1 1 calc(33.333% - 30px);
    min-width: 220px;
    max-width: 280px;
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.step-num {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.next-step p {
    color: var(--text-light);
    line-height: 1.6;
}

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

.thanks-additional {
    padding: 80px 0;
    background: var(--bg-light);
}

.additional-links {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1200px;
    margin: 40px auto 0;
}

.additional-link-card {
    flex: 1 1 calc(33.333% - 40px);
    min-width: 280px;
    background: white;
    padding: 35px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.additional-link-card h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.additional-link-card a {
    color: var(--secondary-color);
    font-weight: 600;
}

.legal-page {
    padding: 120px 0 80px;
    background: var(--bg-white);
}

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

.legal-page h1 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

.legal-updated {
    color: var(--text-light);
    margin-bottom: 40px;
    font-style: italic;
}

.legal-page h2 {
    color: var(--primary-color);
    margin-top: 40px;
    margin-bottom: 20px;
    font-size: 1.8rem;
}

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

.legal-page ul {
    margin: 15px 0 15px 30px;
}

.legal-page ul li {
    margin-bottom: 10px;
    line-height: 1.7;
    color: var(--text-light);
}

.legal-page p {
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 15px;
}

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    background: white;
    box-shadow: 0 3px 15px rgba(0,0,0,0.06);
}

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

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

.cookies-table td {
    color: var(--text-light);
}

@media (max-width: 1024px) {
    .hero-content-offset {
        padding: 60px 40px;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-visual-layer {
        width: 50%;
    }

    .container-asymmetric {
        padding: 0 30px;
    }

    .services-intro-asymmetric {
        margin-left: 50px;
    }

    .services-grid-offset {
        padding: 0 30px;
    }

    .service-card {
        flex: 1 1 calc(50% - 40px);
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 30px 20px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        transform: translateY(-150%);
        transition: transform 0.3s ease;
        gap: 20px;
    }

    .nav-menu.active {
        transform: translateY(0);
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    .hero-asymmetric {
        flex-direction: column;
        min-height: auto;
    }

    .hero-content-offset {
        padding: 40px 30px;
        background: var(--bg-light);
    }

    .hero-visual-layer {
        position: relative;
        width: 100%;
        height: 400px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .intro-card-left {
        margin-left: 0;
        padding: 30px;
    }

    .intro-visual-right {
        margin-left: 0;
        margin-top: 30px;
    }

    .services-intro-asymmetric {
        margin-left: 0;
    }

    .services-grid-offset {
        padding: 0 20px;
    }

    .service-card {
        flex: 1 1 100%;
        margin-top: 0 !important;
    }

    .container-split {
        flex-direction: column;
        gap: 30px;
        padding: 0 20px;
    }

    .philosophy-text,
    .approach-text {
        padding-right: 0;
    }

    .philosophy-visual,
    .approach-visual {
        min-width: 100%;
    }

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

    .testimonial-card {
        flex: 1 1 100%;
        max-width: 100%;
        margin-top: 0 !important;
    }

    .process-intro {
        margin-left: 0;
    }

    .process-steps-offset {
        padding: 0 20px;
        flex-direction: column;
    }

    .process-step {
        flex: 1 1 100%;
    }

    .cta-overlay-content h2 {
        font-size: 2rem;
    }

    .contact-form {
        padding: 30px;
    }

    .footer-container {
        flex-direction: column;
        gap: 30px;
    }

    .sticky-cta {
        bottom: 20px;
        right: 20px;
    }

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

    .page-hero-about h1,
    .page-hero-services h1,
    .page-hero-contact h1 {
        font-size: 2.5rem;
    }

    .story-section .container-asymmetric {
        flex-direction: column;
    }

    .story-visual-left {
        margin-right: 0;
        margin-bottom: 30px;
        min-width: 100%;
    }

    .team-layout-asymmetric {
        flex-direction: column;
    }

    .team-member {
        flex: 1 1 100%;
        margin-top: 0 !important;
    }

    .service-detail-card {
        flex-direction: column;
        gap: 30px;
    }

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

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

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

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

    .communication-options {
        flex-direction: column;
    }

    .comm-option {
        flex: 1 1 100%;
    }

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

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

    .next-step {
        flex: 1 1 100%;
        max-width: 100%;
    }

    .additional-links {
        flex-direction: column;
    }

    .additional-link-card {
        flex: 1 1 100%;
    }

    .cookies-table {
        font-size: 0.9rem;
    }

    .cookies-table th,
    .cookies-table td {
        padding: 10px;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.7rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .nav-asymmetric {
        padding: 15px 20px;
    }

    .btn-primary {
        padding: 12px 30px;
        font-size: 1rem;
    }

    .service-price {
        font-size: 1.5rem;
    }

    .contact-form {
        padding: 25px;
    }

    .sticky-cta-btn {
        padding: 12px 20px;
        font-size: 0.95rem;
    }
}
