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

:root {
    --primary-color: #2c5f7d;
    --primary-dark: #1a3d54;
    --accent-color: #d4a574;
    --text-dark: #1a1a1a;
    --text-light: #4a4a4a;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
}

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);
    overflow-x: hidden;
}

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

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

a:hover {
    color: var(--primary-dark);
}

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

.floating-nav {
    position: fixed;
    top: 40px;
    right: 40px;
    z-index: 999;
    background: var(--bg-white);
    padding: 20px 30px;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 20px;
}

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

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

.nav-toggle span {
    width: 25px;
    height: 2px;
    background: var(--text-dark);
    transition: all 0.3s ease;
}

.nav-menu {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: flex-end;
}

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

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

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

.hero-offset-content {
    flex: 1;
    max-width: 560px;
    padding: 120px 60px 80px 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 28px;
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-white) 100%);
}

.hero-offset-content h1 {
    font-size: 52px;
    line-height: 1.15;
    font-weight: 800;
    color: var(--text-dark);
    letter-spacing: -1.5px;
}

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

.hero-visual-block {
    flex: 1.3;
    position: relative;
    background-color: #e8eef2;
}

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

.cta-primary {
    display: inline-block;
    background: var(--primary-color);
    color: var(--bg-white);
    padding: 16px 36px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    align-self: flex-start;
    box-shadow: var(--shadow-sm);
}

.cta-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    color: var(--bg-white);
}

.intro-offset {
    display: flex;
    align-items: center;
    padding: 100px 40px;
    gap: 80px;
    background: var(--bg-white);
}

.offset-text-block {
    flex: 1;
    max-width: 620px;
    margin-left: 100px;
}

.offset-text-block h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 28px;
    color: var(--text-dark);
    letter-spacing: -0.8px;
}

.offset-text-block p {
    font-size: 17px;
    line-height: 1.75;
    color: var(--text-light);
    margin-bottom: 18px;
}

.visual-overlap {
    flex: 0.8;
    position: relative;
    background-color: #dce4e9;
}

.visual-overlap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
    box-shadow: var(--shadow-md);
}

.services-staggered {
    padding: 120px 60px;
    background: var(--bg-light);
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.service-card {
    display: flex;
    background: var(--bg-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.service-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.service-card img {
    width: 280px;
    height: 240px;
    object-fit: cover;
    flex-shrink: 0;
    background-color: #d8dfe3;
}

.service-content {
    padding: 32px 40px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    flex: 1;
}

.service-content h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
}

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

.price-tag {
    font-size: 22px;
    font-weight: 700;
    color: var(--accent-color);
    margin-top: 8px;
}

.select-service-btn {
    background: var(--primary-color);
    color: var(--bg-white);
    border: none;
    padding: 12px 28px;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
    margin-top: 8px;
}

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

.offset-left {
    margin-left: 0;
    margin-right: auto;
    max-width: 920px;
}

.offset-right {
    margin-left: auto;
    margin-right: 0;
    max-width: 920px;
}

.offset-center {
    margin-left: auto;
    margin-right: auto;
    max-width: 940px;
}

.trust-block-asymmetric {
    display: flex;
    padding: 100px 60px;
    gap: 80px;
    background: var(--bg-white);
    align-items: center;
}

.trust-content {
    flex: 1;
    max-width: 580px;
    margin-right: auto;
}

.trust-content h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--text-dark);
}

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

.trust-visual {
    flex: 0.75;
    background-color: #dde3e7;
}

.trust-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
}

.testimonials-scattered {
    padding: 100px 60px;
    background: var(--bg-light);
}

.testimonials-scattered h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 60px;
    text-align: center;
    color: var(--text-dark);
}

.testimonial-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.testimonial {
    background: var(--bg-white);
    padding: 32px 36px;
    border-radius: 8px;
    max-width: 380px;
    box-shadow: var(--shadow-sm);
    border-left: 4px solid var(--accent-color);
}

.testimonial p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 16px;
}

.testimonial cite {
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    color: var(--text-dark);
}

.offset-a {
    margin-top: -20px;
}

.offset-b {
    margin-top: 20px;
}

.offset-c {
    margin-top: 0;
}

.form-section-asymmetric {
    display: flex;
    padding: 100px 60px;
    gap: 80px;
    background: var(--bg-white);
}

.form-intro-block {
    flex: 0.8;
    padding-top: 20px;
}

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

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

.contact-form {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 24px;
    background: var(--bg-light);
    padding: 40px;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
}

.service-display {
    background: var(--bg-white);
    padding: 16px 20px;
    border-radius: 6px;
    border: 2px solid var(--primary-color);
}

.service-display p {
    font-size: 15px;
    color: var(--text-light);
    font-weight: 500;
}

.service-display.has-service p {
    color: var(--primary-color);
    font-weight: 600;
}

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

.form-group label {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group textarea {
    padding: 12px 16px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.submit-btn {
    background: var(--primary-color);
    color: var(--bg-white);
    border: none;
    padding: 14px 32px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.submit-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: none;
}

.info-blocks-irregular {
    padding: 100px 60px;
    background: var(--bg-light);
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.info-card {
    background: var(--bg-white);
    padding: 36px 32px;
    border-radius: 8px;
    max-width: 360px;
    box-shadow: var(--shadow-sm);
}

.info-card:nth-child(1) {
    transform: translateY(-15px);
}

.info-card:nth-child(2) {
    transform: translateY(15px);
}

.info-card:nth-child(3) {
    transform: translateY(0);
}

.info-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-dark);
}

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

.footer-asymmetric {
    background: var(--text-dark);
    color: var(--bg-light);
    padding: 60px 60px 30px;
}

.footer-main {
    display: flex;
    gap: 60px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.footer-column {
    flex: 1;
    min-width: 240px;
}

.footer-column h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--bg-white);
}

.footer-column p {
    font-size: 14px;
    line-height: 1.8;
    color: #b8b8b8;
}

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

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

.footer-column ul li a {
    font-size: 14px;
    color: #b8b8b8;
    transition: color 0.3s ease;
}

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

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

.disclaimer p {
    font-size: 13px;
    line-height: 1.7;
    color: #b8b8b8;
}

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

.footer-bottom p {
    font-size: 13px;
    color: #888;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--text-dark);
    color: var(--bg-white);
    padding: 24px 40px;
    box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.2);
    z-index: 10000;
    display: none;
}

.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 {
    font-size: 14px;
    line-height: 1.6;
    flex: 1;
}

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

.cookie-actions {
    display: flex;
    gap: 12px;
}

.cookie-btn {
    padding: 10px 24px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.cookie-btn.accept:hover {
    background: var(--primary-dark);
}

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

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

.page-hero-asymmetric {
    display: flex;
    min-height: 60vh;
    align-items: center;
    gap: 60px;
    padding: 80px 60px;
    background: var(--bg-light);
}

.page-hero-content {
    flex: 1;
    max-width: 600px;
}

.page-hero-content h1 {
    font-size: 46px;
    font-weight: 800;
    margin-bottom: 24px;
    color: var(--text-dark);
    letter-spacing: -1px;
}

.page-hero-content p {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-light);
}

.page-hero-visual {
    flex: 1;
    background-color: #d8dfe3;
}

.page-hero-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.about-content-offset {
    display: flex;
    padding: 100px 60px;
    gap: 80px;
    align-items: center;
}

.about-text-block {
    flex: 1;
    max-width: 640px;
}

.about-text-block h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.about-text-block p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 16px;
}

.about-image-overlap {
    flex: 0.9;
    background-color: #dce4e9;
}

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

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

.values-asymmetric h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 60px;
    text-align: center;
    color: var(--text-dark);
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.value-item {
    background: var(--bg-white);
    padding: 36px 32px;
    border-radius: 8px;
    max-width: 480px;
    box-shadow: var(--shadow-sm);
}

.value-item h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 14px;
    color: var(--text-dark);
}

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

.offset-style-a {
    margin-top: -20px;
}

.offset-style-b {
    margin-top: 20px;
}

.offset-style-c {
    margin-top: 0;
}

.offset-style-d {
    margin-top: -10px;
}

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

.process-section h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 60px;
    text-align: center;
    color: var(--text-dark);
}

.process-steps-irregular {
    display: flex;
    flex-direction: column;
    gap: 36px;
    max-width: 900px;
    margin: 0 auto;
}

.process-step {
    background: var(--bg-light);
    padding: 32px 40px;
    border-radius: 8px;
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.step-number {
    background: var(--primary-color);
    color: var(--bg-white);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    flex-shrink: 0;
}

.process-step h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-dark);
}

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

.step-left {
    margin-left: 0;
    margin-right: auto;
    max-width: 760px;
}

.step-right {
    margin-left: auto;
    margin-right: 0;
    max-width: 760px;
}

.step-center {
    margin-left: auto;
    margin-right: auto;
}

.team-visual-block {
    display: flex;
    padding: 100px 60px;
    gap: 80px;
    background: var(--bg-light);
    align-items: center;
}

.team-image {
    flex: 1;
    background-color: #dce4e9;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
}

.team-description {
    flex: 1;
    max-width: 580px;
}

.team-description h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.team-description p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 16px;
}

.services-detailed {
    padding: 80px 60px;
    background: var(--bg-white);
    display: flex;
    flex-direction: column;
    gap: 80px;
}

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

.service-detail-visual {
    flex: 0.9;
    background-color: #dce4e9;
}

.service-detail-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.service-detail-content {
    flex: 1;
    max-width: 620px;
}

.service-detail-content h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.service-price {
    font-size: 26px;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 20px;
}

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

.service-detail-content ul {
    margin: 20px 0;
    padding-left: 24px;
}

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

.service-note {
    font-size: 14px;
    font-style: italic;
    color: #888;
    margin-top: 16px;
}

.service-cta {
    display: inline-block;
    background: var(--primary-color);
    color: var(--bg-white);
    padding: 12px 28px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 15px;
    margin-top: 20px;
    transition: all 0.3s ease;
}

.service-cta:hover {
    background: var(--primary-dark);
    transform: translateX(4px);
    color: var(--bg-white);
}

.offset-layout-a {
    flex-direction: row;
}

.offset-layout-b {
    flex-direction: row-reverse;
}

.offset-layout-c {
    flex-direction: row;
    margin-left: 80px;
}

.service-extras {
    padding: 80px 60px;
    background: var(--bg-light);
}

.service-extras h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 40px;
    text-align: center;
    color: var(--text-dark);
}

.extras-list {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.extra-item {
    background: var(--bg-white);
    padding: 28px 32px;
    border-radius: 8px;
    max-width: 360px;
    box-shadow: var(--shadow-sm);
}

.extra-item h3 {
    font-size: 19px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-dark);
}

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

.pricing-info-block {
    padding: 80px 60px;
    background: var(--bg-white);
    max-width: 900px;
    margin: 0 auto;
}

.pricing-info-block h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.pricing-info-block p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 16px;
}

.pricing-info-block ul {
    margin: 20px 0;
    padding-left: 24px;
}

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

.contact-info-asymmetric {
    display: flex;
    padding: 80px 60px;
    gap: 80px;
}

.contact-primary {
    flex: 1;
    max-width: 540px;
}

.contact-primary h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 36px;
    color: var(--text-dark);
}

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

.contact-detail h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--primary-color);
}

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

.contact-note {
    font-size: 14px;
    font-style: italic;
    color: #888;
    margin-top: 8px;
}

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

.contact-secondary h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--text-dark);
}

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

.coverage-map-info {
    padding: 80px 60px;
    background: var(--bg-light);
    max-width: 1000px;
    margin: 0 auto;
}

.coverage-map-info h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.coverage-map-info p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 16px;
}

.coverage-map-info ul {
    margin: 20px 0;
    padding-left: 24px;
}

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

.faq-contact {
    padding: 80px 60px;
    background: var(--bg-white);
    max-width: 900px;
    margin: 0 auto;
}

.faq-contact h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 40px;
    text-align: center;
    color: var(--text-dark);
}

.faq-item {
    background: var(--bg-light);
    padding: 28px 32px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.faq-item h3 {
    font-size: 19px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-dark);
}

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

.thanks-page-content {
    display: flex;
    padding: 100px 60px;
    gap: 80px;
    min-height: 70vh;
    align-items: center;
}

.thanks-visual {
    flex: 0.8;
    background-color: #dce4e9;
}

.thanks-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.thanks-message {
    flex: 1;
    max-width: 640px;
}

.thanks-message h1 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 24px;
    color: var(--primary-color);
}

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

.selected-service-confirmation {
    background: var(--bg-light);
    padding: 24px 28px;
    border-radius: 8px;
    margin: 32px 0;
}

.selected-service-confirmation h2 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.selected-service-confirmation p {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-color);
}

.thanks-message h2 {
    font-size: 28px;
    font-weight: 700;
    margin: 32px 0 20px;
    color: var(--text-dark);
}

.next-steps {
    margin: 20px 0;
    padding-left: 24px;
}

.next-steps li {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 12px;
}

.back-home-btn {
    display: inline-block;
    background: var(--primary-color);
    color: var(--bg-white);
    padding: 14px 32px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    margin-top: 24px;
    transition: all 0.3s ease;
}

.back-home-btn:hover {
    background: var(--primary-dark);
    color: var(--bg-white);
    transform: translateX(4px);
}

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

.legal-page h1 {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.legal-intro {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 2px solid var(--border-color);
}

.legal-page h2 {
    font-size: 28px;
    font-weight: 700;
    margin-top: 40px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.legal-page h3 {
    font-size: 22px;
    font-weight: 700;
    margin-top: 28px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

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

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

.legal-page ul {
    margin: 16px 0;
    padding-left: 28px;
}

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

.legal-date {
    margin-top: 48px;
    padding-top: 24px;
    border-top: 1px solid var(--border-color);
    font-size: 14px;
    font-style: italic;
    color: #888;
}

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

    .hero-offset-content {
        max-width: 100%;
        padding: 60px 40px;
    }

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

    .intro-offset {
        flex-direction: column;
        gap: 40px;
        padding: 60px 40px;
    }

    .offset-text-block {
        margin-left: 0;
    }

    .trust-block-asymmetric {
        flex-direction: column;
        padding: 60px 40px;
    }

    .form-section-asymmetric {
        flex-direction: column;
        padding: 60px 40px;
    }

    .page-hero-asymmetric {
        flex-direction: column;
    }

    .about-content-offset {
        flex-direction: column;
        padding: 60px 40px;
    }

    .team-visual-block {
        flex-direction: column;
        padding: 60px 40px;
    }

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

    .offset-layout-b {
        flex-direction: column;
    }

    .offset-layout-c {
        margin-left: 0;
    }

    .contact-info-asymmetric {
        flex-direction: column;
        gap: 40px;
    }

    .thanks-page-content {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .floating-nav {
        top: 20px;
        right: 20px;
        padding: 16px 20px;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        display: none;
        margin-top: 16px;
    }

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

    .hero-offset-content {
        padding: 40px 30px;
    }

    .hero-offset-content h1 {
        font-size: 34px;
    }

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

    .service-card img {
        width: 100%;
        height: 220px;
    }

    .services-staggered {
        padding: 60px 30px;
    }

    .offset-left,
    .offset-right,
    .offset-center {
        margin-left: 0;
        margin-right: 0;
        max-width: 100%;
    }

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

    .info-blocks-irregular {
        flex-direction: column;
        padding: 60px 30px;
    }

    .info-card {
        max-width: 100%;
    }

    .info-card:nth-child(1),
    .info-card:nth-child(2),
    .info-card:nth-child(3) {
        transform: none;
    }

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

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

    .step-left,
    .step-right {
        margin-left: 0;
        margin-right: 0;
        max-width: 100%;
    }

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

@media (max-width: 480px) {
    .hero-offset-content h1 {
        font-size: 28px;
    }

    .hero-offset-content p {
        font-size: 16px;
    }

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

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