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

:root {
    --primary-color: #2c3e50;
    --secondary-color: #3498db;
    --accent-color: #e74c3c;
    --text-color: #333;
    --light-bg: #f8f9fa;
    --white: #ffffff;
    --gray: #6c757d;
    --border-radius: 8px;
    --transition: all 0.3s ease;
}

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

.ad-disclosure {
    background: #fff3cd;
    color: #856404;
    padding: 8px 20px;
    text-align: center;
    font-size: 13px;
    border-bottom: 1px solid #ffeaa7;
    position: sticky;
    top: 0;
    z-index: 999;
}

.nav-floating {
    position: fixed;
    top: 40px;
    right: 30px;
    display: flex;
    align-items: center;
    gap: 40px;
    background: rgba(255, 255, 255, 0.95);
    padding: 15px 30px;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    z-index: 998;
    backdrop-filter: blur(10px);
}

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

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

.nav-toggle span {
    width: 25px;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu li a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: var(--transition);
}

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

.hero-asymmetric {
    min-height: 90vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 100px 20px 60px;
}

.hero-content-offset {
    width: 50%;
    padding-left: 8%;
    z-index: 2;
}

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

.hero-subtitle {
    font-size: 20px;
    color: var(--gray);
    margin-bottom: 35px;
    max-width: 500px;
}

.hero-image-diagonal {
    position: absolute;
    right: -5%;
    top: 15%;
    width: 55%;
    height: 70%;
    transform: rotate(-3deg);
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

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

.cta-primary,
.cta-secondary {
    display: inline-block;
    padding: 16px 40px;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
}

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

.cta-primary:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(52, 152, 219, 0.3);
}

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

.cta-secondary:hover {
    background: var(--primary-color);
    color: var(--white);
}

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

.intro-block-left {
    width: 55%;
    padding-right: 40px;
}

.intro-block-left h2 {
    font-size: 38px;
    color: var(--primary-color);
    margin-bottom: 25px;
}

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

.intro-visual-right {
    width: 45%;
    transform: translateY(-30px);
}

.intro-visual-right img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

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

.section-header-diagonal {
    margin-bottom: 70px;
    transform: translateX(5%);
}

.section-header-diagonal h2 {
    font-size: 46px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.section-header-diagonal p {
    font-size: 20px;
    color: var(--gray);
}

.services-grid-offset {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.service-card {
    display: flex;
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}

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

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

.service-card.offset-2 {
    margin-left: 10%;
}

.service-card.offset-3 {
    margin-left: 5%;
}

.service-card.offset-4 {
    margin-left: 15%;
}

.service-card.offset-5 {
    margin-left: 8%;
}

.service-card.offset-6 {
    margin-left: 3%;
}

.service-image {
    width: 40%;
    background: var(--light-bg);
}

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

.service-content {
    width: 60%;
    padding: 40px;
}

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

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

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

.btn-select-service {
    padding: 12px 30px;
    background: var(--secondary-color);
    color: var(--white);
    border: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

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

.form-section-diagonal {
    position: relative;
    padding: 120px 8% 100px;
    overflow: hidden;
}

.form-wrapper-offset {
    width: 55%;
    background: var(--white);
    padding: 60px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 2;
    transform: translateX(5%);
}

.form-wrapper-offset h2 {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.form-intro {
    font-size: 18px;
    color: var(--gray);
    margin-bottom: 35px;
}

.form-image-overlay {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%) rotate(5deg);
    width: 45%;
    height: 80%;
    overflow: hidden;
    border-radius: 20px;
    opacity: 0.3;
}

.form-image-overlay img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

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

.form-group input,
.form-group textarea {
    padding: 14px;
    border: 2px solid #e0e0e0;
    border-radius: var(--border-radius);
    font-size: 16px;
    transition: var(--transition);
}

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

.btn-submit {
    padding: 16px 40px;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: var(--border-radius);
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.btn-submit:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(52, 152, 219, 0.3);
}

.form-service-display {
    margin-top: 15px;
    padding: 15px;
    background: #e8f5e9;
    border-left: 4px solid #4caf50;
    border-radius: 5px;
    font-weight: 600;
    color: #2e7d32;
}

.benefits-stacked {
    padding: 100px 8%;
    background: var(--white);
}

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

.benefits-alternating {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.benefit-block {
    padding: 40px;
    border-radius: 15px;
    background: var(--light-bg);
}

.benefit-block.left {
    width: 70%;
    margin-left: 0;
    transform: translateX(-3%);
}

.benefit-block.right {
    width: 70%;
    margin-left: 30%;
    transform: translateX(3%);
}

.benefit-block h3 {
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.benefit-block p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-color);
}

.cta-diagonal {
    padding: 100px 8%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    text-align: center;
    transform: skewY(-2deg);
    margin: 80px 0;
}

.cta-content-asymmetric {
    transform: skewY(2deg);
}

.cta-diagonal h2 {
    font-size: 44px;
    color: var(--white);
    margin-bottom: 20px;
}

.cta-diagonal p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 35px;
}

.footer-asymmetric {
    background: #1a1a1a;
    color: var(--white);
    padding: 60px 8% 30px;
}

.footer-main {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--white);
}

.footer-col p,
.footer-col ul {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

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

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

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
}

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

.footer-disclaimer {
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    margin-bottom: 30px;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    color: var(--white);
    padding: 20px;
    z-index: 1000;
    display: none;
    backdrop-filter: blur(10px);
}

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

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

.cookie-content p {
    flex: 1;
    font-size: 14px;
    line-height: 1.6;
}

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

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

.cookie-accept,
.cookie-reject {
    padding: 12px 30px;
    border: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.cookie-accept {
    background: #4caf50;
    color: var(--white);
}

.cookie-accept:hover {
    background: #45a049;
}

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

.cookie-reject:hover {
    background: var(--white);
    color: var(--primary-color);
}

.about-hero-offset {
    min-height: 70vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 120px 8% 60px;
}

.about-content-diagonal {
    width: 50%;
    z-index: 2;
}

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

.about-lead {
    font-size: 22px;
    color: var(--gray);
    line-height: 1.6;
}

.about-image-overlap {
    position: absolute;
    right: 5%;
    top: 20%;
    width: 45%;
    height: 60%;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transform: rotate(2deg);
}

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

.about-story-asymmetric {
    padding: 100px 8%;
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.story-block-left {
    width: 55%;
}

.story-block-left h2 {
    font-size: 38px;
    color: var(--primary-color);
    margin-bottom: 25px;
}

.story-block-left p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.story-visual-right {
    width: 45%;
    transform: translateY(40px);
}

.story-visual-right img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.values-offset {
    padding: 80px 8% 100px;
    background: var(--light-bg);
}

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

.values-grid-staggered {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.value-card {
    background: var(--white);
    padding: 35px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.value-card.offset-a {
    transform: translateY(-20px);
}

.value-card.offset-b {
    transform: translateY(20px);
}

.value-card.offset-c {
    transform: translateY(10px);
}

.value-card.offset-d {
    transform: translateY(-10px);
}

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

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

.team-asymmetric {
    padding: 100px 8%;
}

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

.team-intro {
    font-size: 18px;
    color: var(--gray);
    text-align: center;
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.team-layout-offset {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.team-member {
    padding: 40px;
    border-radius: 15px;
    background: var(--light-bg);
}

.team-member.offset-left {
    width: 65%;
    margin-left: 0;
}

.team-member.offset-right {
    width: 65%;
    margin-left: 35%;
}

.team-member.offset-center {
    width: 70%;
    margin-left: 15%;
}

.team-member h3 {
    font-size: 26px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.team-member p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-color);
}

.approach-diagonal {
    padding: 100px 8%;
    background: var(--light-bg);
}

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

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

.step-block {
    display: flex;
    gap: 30px;
    align-items: flex-start;
    padding: 35px;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.step-block:nth-child(odd) {
    margin-left: 5%;
}

.step-block:nth-child(even) {
    margin-left: 10%;
}

.step-number {
    font-size: 48px;
    font-weight: 800;
    color: var(--secondary-color);
    opacity: 0.3;
    min-width: 80px;
}

.step-block h3 {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

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

.cta-offset {
    padding: 80px 8%;
    text-align: center;
}

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

.cta-offset p {
    font-size: 18px;
    color: var(--gray);
    margin-bottom: 35px;
}

.services-hero-diagonal {
    padding: 150px 8% 80px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    text-align: center;
}

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

.services-lead {
    font-size: 20px;
    color: var(--gray);
    max-width: 700px;
    margin: 0 auto;
}

.services-detail-asymmetric {
    padding: 80px 8% 100px;
}

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

.service-detail.offset-pattern-1 {
    margin-left: 0;
}

.service-detail.offset-pattern-2 {
    margin-left: 8%;
    flex-direction: row-reverse;
}

.service-detail.offset-pattern-3 {
    margin-left: 3%;
}

.service-detail.offset-pattern-4 {
    margin-left: 10%;
    flex-direction: row-reverse;
}

.service-detail.offset-pattern-5 {
    margin-left: 5%;
}

.service-detail.offset-pattern-6 {
    margin-left: 12%;
    flex-direction: row-reverse;
}

.service-detail-image {
    width: 45%;
    flex-shrink: 0;
}

.service-detail-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

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

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

.service-detail-content p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.service-features {
    list-style: none;
    margin: 25px 0;
}

.service-features li {
    padding: 10px 0 10px 30px;
    position: relative;
    font-size: 16px;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #4caf50;
    font-weight: bold;
}

.service-price-large {
    font-size: 32px;
    font-weight: 700;
    color: var(--secondary-color);
    margin: 25px 0;
}

.service-cta-offset {
    padding: 80px 8%;
    background: var(--light-bg);
    text-align: center;
}

.service-cta-offset h2 {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.service-cta-offset p {
    font-size: 18px;
    color: var(--gray);
    margin-bottom: 35px;
}

.contact-hero-offset {
    padding: 150px 8% 80px;
    background: var(--light-bg);
}

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

.contact-lead {
    font-size: 20px;
    color: var(--gray);
    max-width: 600px;
}

.contact-content-asymmetric {
    padding: 80px 8%;
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

.contact-info-left {
    width: 45%;
}

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

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

.contact-block h3 {
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

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

.contact-visual-right {
    width: 55%;
    transform: translateY(30px);
}

.contact-visual-right img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.contact-map-section {
    padding: 80px 8%;
    background: var(--light-bg);
}

.contact-map-section h2 {
    font-size: 38px;
    color: var(--primary-color);
    margin-bottom: 40px;
    text-align: center;
}

.contact-directions {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.direction-block {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    flex: 1;
    min-width: 250px;
    max-width: 350px;
}

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

.direction-block p {
    font-size: 16px;
    color: var(--text-color);
}

.contact-cta-diagonal {
    padding: 100px 8%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    text-align: center;
}

.contact-cta-diagonal h2 {
    font-size: 44px;
    color: var(--white);
    margin-bottom: 20px;
}

.contact-cta-diagonal p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 35px;
}

.thanks-section-asymmetric {
    min-height: 80vh;
    padding: 120px 8%;
    display: flex;
    gap: 60px;
    align-items: center;
}

.thanks-content-offset {
    width: 60%;
}

.thanks-icon {
    margin-bottom: 30px;
}

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

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

.thanks-service-info {
    padding: 20px;
    background: #e8f5e9;
    border-left: 4px solid #4caf50;
    border-radius: 8px;
    margin-bottom: 40px;
    font-size: 16px;
    color: #2e7d32;
}

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

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

.steps-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.step-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 20px;
    background: var(--light-bg);
    border-radius: 10px;
}

.step-num {
    font-size: 32px;
    font-weight: 700;
    color: var(--secondary-color);
    min-width: 50px;
}

.step-item p {
    font-size: 16px;
    line-height: 1.7;
}

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

.thanks-visual {
    width: 40%;
    transform: translateY(-30px);
}

.thanks-visual img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.legal-page {
    padding: 120px 8% 80px;
    max-width: 1000px;
    margin: 0 auto;
}

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

.legal-updated {
    font-size: 14px;
    color: var(--gray);
    margin-bottom: 40px;
}

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

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

.legal-content p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 15px;
}

.legal-content ul,
.legal-content ol {
    margin: 20px 0 20px 30px;
}

.legal-content li {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 10px;
}

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

@media (max-width: 1024px) {
    .nav-floating {
        top: 50px;
        right: 20px;
        padding: 12px 20px;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 60px;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 20px;
        border-radius: 15px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-asymmetric {
        flex-direction: column;
        padding-top: 120px;
    }

    .hero-content-offset {
        width: 100%;
        padding-left: 0;
        text-align: center;
    }

    .hero-image-diagonal {
        position: relative;
        width: 100%;
        height: 400px;
        right: 0;
        top: 0;
        margin-top: 40px;
        transform: rotate(0);
    }

    .intro-offset {
        flex-direction: column;
        padding: 80px 6%;
    }

    .intro-block-left,
    .intro-visual-right {
        width: 100%;
    }

    .intro-visual-right {
        transform: translateY(0);
    }

    .service-card {
        flex-direction: column;
        margin-left: 0 !important;
    }

    .service-image,
    .service-content {
        width: 100%;
    }

    .form-section-diagonal {
        padding: 80px 6%;
    }

    .form-wrapper-offset {
        width: 100%;
        transform: translateX(0);
        padding: 40px 30px;
    }

    .form-image-overlay {
        display: none;
    }

    .benefit-block.left,
    .benefit-block.right {
        width: 100%;
        margin-left: 0;
        transform: translateX(0);
    }

    .about-hero-offset {
        flex-direction: column;
        padding: 120px 6% 60px;
    }

    .about-content-diagonal {
        width: 100%;
    }

    .about-image-overlap {
        position: relative;
        width: 100%;
        height: 400px;
        right: 0;
        top: 0;
        margin-top: 40px;
        transform: rotate(0);
    }

    .about-story-asymmetric {
        flex-direction: column;
        padding: 80px 6%;
    }

    .story-block-left,
    .story-visual-right {
        width: 100%;
    }

    .story-visual-right {
        transform: translateY(0);
    }

    .values-grid-staggered {
        grid-template-columns: 1fr;
    }

    .value-card {
        transform: translateY(0) !important;
    }

    .team-member {
        width: 100% !important;
        margin-left: 0 !important;
    }

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

    .service-detail {
        flex-direction: column !important;
        margin-left: 0 !important;
        gap: 30px;
    }

    .service-detail-image {
        width: 100%;
    }

    .contact-content-asymmetric {
        flex-direction: column;
        padding: 60px 6%;
        gap: 50px;
    }

    .contact-info-left,
    .contact-visual-right {
        width: 100%;
    }

    .contact-visual-right {
        transform: translateY(0);
    }

    .thanks-section-asymmetric {
        flex-direction: column;
        padding: 100px 6%;
    }

    .thanks-content-offset,
    .thanks-visual {
        width: 100%;
    }

    .thanks-visual {
        transform: translateY(0);
    }

    .thanks-actions {
        flex-direction: column;
    }

    .footer-main {
        flex-wrap: wrap;
    }

    .footer-col {
        flex: 1 1 45%;
    }

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

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

@media (max-width: 640px) {
    .hero-title {
        font-size: 34px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .section-header-diagonal h2,
    .benefits-stacked h2,
    .values-offset h2 {
        font-size: 32px;
    }

    .cta-diagonal h2,
    .contact-cta-diagonal h2 {
        font-size: 32px;
    }

    .legal-content h1 {
        font-size: 32px;
    }

    .legal-content h2 {
        font-size: 24px;
    }

    .footer-col {
        flex: 1 1 100%;
    }
}