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

:root {
    --primary-color: #0066ff;
    --secondary-color: #1a1a2e;
    --accent-color: #ff6b35;
    --text-dark: #2b2b2b;
    --text-light: #666666;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --overlay-bg: rgba(26, 26, 46, 0.85);
}

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

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

.nav-asymmetric {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 8%;
    background-color: var(--bg-white);
    position: relative;
    z-index: 100;
}

.nav-brand {
    font-size: 22px;
    font-weight: 600;
    color: var(--secondary-color);
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    gap: 35px;
}

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

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

.hero-asymmetric {
    display: flex;
    min-height: 75vh;
    padding: 60px 8% 80px;
    background-color: var(--bg-light);
    position: relative;
    overflow: hidden;
}

.hero-offset-block {
    width: 45%;
    padding-top: 80px;
    z-index: 2;
}

.hero-offset-block h1 {
    font-size: 58px;
    line-height: 1.15;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 30px;
    letter-spacing: -1.5px;
}

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

.hero-image-overlap {
    position: absolute;
    right: -5%;
    top: 15%;
    width: 58%;
    z-index: 1;
    background-color: var(--bg-white);
}

.hero-image-overlap img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.intro-irregular {
    display: flex;
    padding: 100px 8% 80px;
    gap: 60px;
    align-items: center;
}

.intro-text-block {
    width: 50%;
    font-size: 21px;
    line-height: 1.7;
    color: var(--text-dark);
    padding-left: 5%;
}

.intro-offset-card {
    width: 45%;
    background-color: var(--bg-light);
    padding: 50px 45px;
    transform: translateY(-40px);
}

.intro-offset-card h2 {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

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

.insight-layered {
    position: relative;
    padding: 120px 8% 100px;
    background-color: var(--bg-white);
}

.insight-background-block {
    position: absolute;
    left: 0;
    top: 0;
    width: 45%;
    height: 100%;
    background-color: var(--bg-light);
    z-index: 0;
}

.insight-content-overlap {
    position: relative;
    z-index: 1;
}

.insight-content-overlap h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 60px;
    color: var(--secondary-color);
    max-width: 600px;
}

.insight-grid-irregular {
    display: flex;
    gap: 40px;
}

.insight-item {
    flex: 1;
    background-color: var(--bg-white);
    padding: 40px 35px;
    border: 1px solid var(--border-color);
}

.insight-item.offset-down {
    transform: translateY(50px);
}

.insight-item.offset-up {
    transform: translateY(-30px);
}

.insight-item h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

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

.approach-split-irregular {
    display: flex;
    padding: 90px 8%;
    gap: 70px;
    align-items: center;
    background-color: var(--bg-light);
}

.approach-visual {
    width: 48%;
    background-color: var(--bg-white);
}

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

.approach-text-offset {
    width: 45%;
    padding-left: 20px;
    transform: translateY(-30px);
}

.approach-text-offset h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--secondary-color);
}

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

.cta-inline {
    display: inline-block;
    margin-top: 20px;
    padding: 14px 32px;
    background-color: var(--primary-color);
    color: var(--bg-white);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: background-color 0.3s;
}

.cta-inline:hover {
    background-color: #0052cc;
}

.services-asymmetric {
    padding: 100px 8% 120px;
    background-color: var(--bg-white);
}

.services-header-offset {
    margin-left: 10%;
    margin-bottom: 70px;
    max-width: 650px;
}

.services-header-offset h2 {
    font-size: 46px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.services-header-offset p {
    font-size: 18px;
    color: var(--text-light);
}

.services-cards-irregular {
    display: flex;
    flex-wrap: wrap;
    gap: 35px;
}

.service-card {
    width: calc(33.333% - 24px);
    background-color: var(--bg-light);
    overflow: hidden;
}

.service-card.offset-up {
    transform: translateY(-40px);
}

.service-card.offset-down {
    transform: translateY(40px);
}

.service-visual {
    width: 100%;
    height: 220px;
    overflow: hidden;
    background-color: var(--bg-white);
}

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

.service-card h3 {
    font-size: 22px;
    font-weight: 600;
    margin: 25px 25px 15px;
    color: var(--secondary-color);
}

.service-card p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-light);
    margin: 0 25px 20px;
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
    margin: 20px 25px 15px;
}

.btn-select-service {
    display: block;
    width: calc(100% - 50px);
    margin: 0 25px 25px;
    padding: 14px;
    background-color: var(--secondary-color);
    color: var(--bg-white);
    border: none;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-select-service:hover {
    background-color: var(--primary-color);
}

.btn-select-service.selected {
    background-color: var(--accent-color);
}

.form-section-offset {
    padding: 90px 8% 100px;
    background-color: var(--bg-light);
}

.form-container-asymmetric {
    display: flex;
    gap: 60px;
    max-width: 1100px;
    margin: 0 auto;
}

.form-intro-block {
    width: 40%;
    padding-top: 20px;
}

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

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

.service-form {
    width: 55%;
    background-color: var(--bg-white);
    padding: 45px 40px;
}

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

.form-row label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.form-row input,
.form-row textarea {
    width: 100%;
    padding: 12px 15px;
    font-size: 15px;
    border: 1px solid var(--border-color);
    background-color: var(--bg-white);
    font-family: inherit;
}

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

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

.btn-submit:hover:not(:disabled) {
    background-color: #0052cc;
}

.btn-submit:disabled {
    background-color: var(--border-color);
    cursor: not-allowed;
}

.form-note {
    margin-top: 15px;
    font-size: 13px;
    color: var(--text-light);
    text-align: center;
}

.trust-section-irregular {
    padding: 100px 8%;
    background-color: var(--bg-white);
}

.trust-content h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 60px;
    text-align: center;
    color: var(--secondary-color);
}

.testimonial-blocks {
    display: flex;
    gap: 50px;
}

.testimonial {
    flex: 1;
    padding: 40px;
    background-color: var(--bg-light);
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-dark);
}

.testimonial.offset-left {
    transform: translateY(-30px);
}

.testimonial.offset-right {
    transform: translateY(30px);
}

.testimonial cite {
    display: block;
    margin-top: 20px;
    font-size: 15px;
    font-style: normal;
    color: var(--text-light);
}

.footer-asymmetric {
    background-color: var(--secondary-color);
    color: var(--bg-white);
    padding: 60px 8% 40px;
}

.footer-content-irregular {
    display: flex;
    gap: 80px;
    margin-bottom: 50px;
}

.footer-block {
    flex: 1;
}

.footer-block.offset {
    transform: translateY(15px);
}

.footer-block h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

.footer-block h4 {
    font-size: 16px;
    margin-bottom: 15px;
    color: var(--bg-light);
}

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

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

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

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

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

.disclaimer-block {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 13px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.6);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--bg-white);
    padding: 25px 8%;
    box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-dark);
}

.cookie-content a {
    color: var(--primary-color);
    text-decoration: underline;
}

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

.btn-cookie {
    padding: 12px 28px;
    border: none;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.btn-cookie.accept:hover {
    background-color: #0052cc;
}

.btn-cookie.reject {
    background-color: var(--bg-light);
    color: var(--text-dark);
}

.btn-cookie.reject:hover {
    background-color: var(--border-color);
}

.about-hero-irregular {
    padding: 100px 8% 60px;
    background-color: var(--bg-light);
}

.about-header-offset {
    margin-left: 15%;
    margin-bottom: 40px;
}

.about-header-offset h1 {
    font-size: 52px;
    line-height: 1.2;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 30px;
}

.about-intro-block {
    max-width: 750px;
    margin: 0 auto;
    font-size: 20px;
    line-height: 1.7;
    color: var(--text-dark);
    text-align: center;
}

.about-story-asymmetric {
    display: flex;
    padding: 100px 8%;
    gap: 70px;
    align-items: center;
    background-color: var(--bg-white);
}

.story-visual-overlap {
    width: 45%;
    background-color: var(--bg-light);
}

.story-visual-overlap img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.story-text-offset {
    width: 50%;
    transform: translateY(-25px);
}

.story-text-offset h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--secondary-color);
}

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

.philosophy-section-layered {
    position: relative;
    padding: 100px 8%;
    background-color: var(--bg-light);
}

.philosophy-background {
    position: absolute;
    right: 0;
    top: 0;
    width: 50%;
    height: 100%;
    background-color: var(--bg-white);
    z-index: 0;
}

.philosophy-content-irregular {
    position: relative;
    z-index: 1;
}

.philosophy-content-irregular h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 60px;
    color: var(--secondary-color);
}

.philosophy-blocks {
    display: flex;
    flex-wrap: wrap;
    gap: 35px;
}

.philosophy-item {
    width: calc(50% - 18px);
    background-color: var(--bg-white);
    padding: 40px 35px;
    border: 1px solid var(--border-color);
}

.philosophy-item.offset-down {
    transform: translateY(35px);
}

.philosophy-item.offset-up {
    transform: translateY(-35px);
}

.philosophy-item h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

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

.team-approach-split {
    display: flex;
    padding: 90px 8%;
    gap: 60px;
    align-items: center;
    background-color: var(--bg-white);
}

.team-text-irregular {
    width: 50%;
}

.team-text-irregular h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--secondary-color);
}

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

.team-visual-offset {
    width: 45%;
    transform: translateY(30px);
    background-color: var(--bg-light);
}

.team-visual-offset img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.values-irregular {
    padding: 90px 8%;
    background-color: var(--bg-light);
}

.values-irregular h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 50px;
    text-align: center;
    color: var(--secondary-color);
}

.values-grid-asymmetric {
    display: flex;
    gap: 40px;
}

.value-card {
    flex: 1;
    background-color: var(--bg-white);
    padding: 40px 35px;
}

.value-card.offset-up {
    transform: translateY(-30px);
}

.value-card.offset-down {
    transform: translateY(30px);
}

.value-card h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

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

.cta-about-offset {
    padding: 100px 8%;
    background-color: var(--bg-white);
}

.cta-content-irregular {
    max-width: 700px;
    margin-left: 10%;
    text-align: left;
}

.cta-content-irregular h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

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

.btn-cta-primary {
    display: inline-block;
    padding: 16px 40px;
    background-color: var(--primary-color);
    color: var(--bg-white);
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.btn-cta-primary:hover {
    background-color: #0052cc;
}

.btn-cta-secondary {
    display: inline-block;
    padding: 16px 40px;
    background-color: var(--bg-light);
    color: var(--text-dark);
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    margin-left: 15px;
    transition: background-color 0.3s;
}

.btn-cta-secondary:hover {
    background-color: var(--border-color);
}

.services-hero-offset {
    padding: 100px 8% 60px;
    background-color: var(--bg-light);
    max-width: 900px;
}

.services-hero-offset h1 {
    font-size: 52px;
    line-height: 1.2;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 30px;
}

.services-intro-text {
    font-size: 19px;
    line-height: 1.7;
    color: var(--text-light);
    max-width: 750px;
}

.services-detailed-irregular {
    padding: 80px 8%;
    background-color: var(--bg-white);
}

.service-detail-block {
    display: flex;
    gap: 60px;
    align-items: center;
    margin-bottom: 100px;
}

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

.service-detail-visual {
    width: 45%;
    background-color: var(--bg-light);
}

.service-detail-visual img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.service-detail-content {
    width: 50%;
}

.service-detail-content.offset-left {
    transform: translateX(-30px);
}

.service-detail-content.offset-right {
    transform: translateX(30px);
}

.service-detail-content h2 {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.service-detail-content p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 15px;
}

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

.service-detail-content ul li {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 10px;
}

.service-detail-price {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
    margin: 25px 0 20px;
}

.services-process-irregular {
    padding: 90px 8% 80px;
    background-color: var(--bg-light);
}

.process-header-offset {
    margin-left: 10%;
    margin-bottom: 60px;
}

.process-header-offset h2 {
    font-size: 42px;
    font-weight: 700;
    color: var(--secondary-color);
}

.process-steps-asymmetric {
    display: flex;
    gap: 35px;
}

.process-step {
    flex: 1;
    background-color: var(--bg-white);
    padding: 40px 30px;
}

.process-step.offset-down {
    transform: translateY(40px);
}

.process-step.offset-up {
    transform: translateY(-40px);
}

.step-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.process-step h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--secondary-color);
}

.process-step p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-light);
}

.services-cta-offset {
    padding: 100px 8%;
    background-color: var(--bg-white);
}

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

.cta-services-content h2 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.cta-services-content p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 35px;
}

.contact-hero-offset {
    padding: 100px 8% 60px;
    background-color: var(--bg-light);
    max-width: 850px;
}

.contact-hero-offset h1 {
    font-size: 52px;
    line-height: 1.2;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 30px;
}

.contact-intro-text {
    font-size: 19px;
    line-height: 1.7;
    color: var(--text-light);
    max-width: 700px;
}

.contact-content-irregular {
    display: flex;
    padding: 90px 8%;
    gap: 70px;
    align-items: flex-start;
    background-color: var(--bg-white);
}

.contact-info-block {
    width: 40%;
    padding-top: 20px;
}

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

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

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

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

.contact-visual-offset {
    width: 55%;
    transform: translateY(-40px);
    background-color: var(--bg-light);
}

.contact-visual-offset img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.contact-approach-section {
    padding: 90px 8%;
    background-color: var(--bg-light);
}

.approach-content-irregular h2 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 50px;
    text-align: center;
    color: var(--secondary-color);
}

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

.approach-item {
    flex: 1;
    background-color: var(--bg-white);
    padding: 40px 35px;
}

.approach-item.offset-up {
    transform: translateY(-30px);
}

.approach-item.offset-down {
    transform: translateY(30px);
}

.approach-item h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

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

.contact-cta-offset {
    padding: 100px 8%;
    background-color: var(--bg-white);
}

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

.cta-contact-content h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.cta-contact-content p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 35px;
}

.thanks-hero-offset {
    padding: 100px 8%;
    background-color: var(--bg-light);
    min-height: 60vh;
}

.thanks-content-irregular {
    max-width: 900px;
    margin: 0 auto;
}

.thanks-content-irregular h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--secondary-color);
}

.thanks-message {
    font-size: 19px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 30px;
}

.service-confirmation {
    background-color: var(--bg-white);
    padding: 25px 30px;
    margin-bottom: 50px;
    border-left: 4px solid var(--primary-color);
}

.service-confirmation p {
    font-size: 17px;
    color: var(--text-dark);
}

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

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

.next-steps-blocks {
    display: flex;
    gap: 35px;
}

.step-block {
    flex: 1;
    background-color: var(--bg-white);
    padding: 35px 30px;
}

.step-block.offset-up {
    transform: translateY(-25px);
}

.step-block.offset-down {
    transform: translateY(25px);
}

.step-icon {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.step-block h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.step-block p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-light);
}

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

.legal-content {
    padding: 100px 8%;
    max-width: 1000px;
    margin: 0 auto;
    background-color: var(--bg-white);
}

.legal-content h1 {
    font-size: 44px;
    font-weight: 700;
    margin-bottom: 40px;
    color: var(--secondary-color);
}

.legal-content h2 {
    font-size: 28px;
    font-weight: 700;
    margin-top: 40px;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.legal-content h3 {
    font-size: 22px;
    font-weight: 600;
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.legal-content h4 {
    font-size: 18px;
    font-weight: 600;
    margin-top: 25px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

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

.legal-content ul {
    margin: 15px 0 20px 30px;
    list-style: disc;
}

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

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

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

.cookie-table thead tr {
    background-color: var(--bg-light);
}

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

.cookie-table th {
    font-weight: 600;
    color: var(--secondary-color);
}

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

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

    .hero-offset-block {
        width: 100%;
        padding-top: 20px;
    }

    .hero-offset-block h1 {
        font-size: 42px;
    }

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

    .intro-irregular,
    .approach-split-irregular,
    .about-story-asymmetric,
    .team-approach-split,
    .contact-content-irregular,
    .form-container-asymmetric {
        flex-direction: column;
        gap: 40px;
    }

    .intro-text-block,
    .intro-offset-card,
    .approach-visual,
    .approach-text-offset,
    .story-visual-overlap,
    .story-text-offset,
    .team-text-irregular,
    .team-visual-offset,
    .contact-info-block,
    .contact-visual-offset,
    .form-intro-block,
    .service-form {
        width: 100%;
    }

    .service-card {
        width: calc(50% - 18px);
    }

    .insight-grid-irregular,
    .values-grid-asymmetric,
    .process-steps-asymmetric,
    .approach-blocks,
    .next-steps-blocks {
        flex-direction: column;
    }

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

@media (max-width: 768px) {
    .nav-asymmetric {
        padding: 20px 5%;
    }

    .nav-links {
        gap: 20px;
    }

    .nav-links a {
        font-size: 14px;
    }

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

    .service-card {
        width: 100%;
    }

    .services-cards-irregular {
        gap: 25px;
    }

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

    .cookie-content {
        flex-direction: column;
        gap: 20px;
    }

    .cookie-buttons {
        width: 100%;
    }

    .btn-cookie {
        flex: 1;
    }
}