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

:root {
    --primary-color: #0066cc;
    --primary-dark: #004999;
    --secondary-color: #00b8d4;
    --accent-color: #ff6b35;
    --text-dark: #1a1a1a;
    --text-gray: #4a4a4a;
    --text-light: #666666;
    --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;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--bg-white);
    overflow-x: hidden;
}

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

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

.container-split {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.nav-floating {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 40px;
}

.nav-brand a {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    letter-spacing: -0.5px;
}

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

.nav-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    transition: 0.3s;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 35px;
    align-items: center;
}

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

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

.hero-asymmetric {
    margin-top: 70px;
    min-height: 90vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.hero-content-offset {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 40px;
    gap: 80px;
    position: relative;
}

.hero-text-block {
    flex: 1;
    max-width: 600px;
    position: relative;
    z-index: 2;
}

.hero-title-large {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 30px;
    color: var(--text-dark);
    letter-spacing: -1px;
}

.hero-intro {
    font-size: 20px;
    line-height: 1.7;
    color: var(--text-gray);
    margin-bottom: 40px;
}

.hero-visual-overlay {
    flex: 1;
    position: relative;
    max-width: 600px;
}

.hero-visual-overlay img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    transform: rotate(-2deg);
}

.cta-primary,
.cta-primary-large,
.cta-secondary,
.cta-tertiary {
    display: inline-block;
    padding: 16px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

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

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

.cta-primary-large {
    background: var(--primary-color);
    color: white;
    font-size: 18px;
    padding: 20px 40px;
}

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

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

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

.cta-tertiary {
    background: var(--bg-light);
    color: var(--text-dark);
}

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

.cta-inline {
    display: inline-block;
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 2px;
    transition: all 0.3s;
}

.cta-inline:hover {
    color: var(--primary-dark);
    border-color: var(--primary-dark);
}

.problem-amplify {
    padding: 100px 20px;
    background: var(--bg-white);
}

.section-title-offset {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 50px;
    max-width: 700px;
    line-height: 1.2;
    color: var(--text-dark);
}

.section-title-offset-right {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 30px;
    margin-left: auto;
    max-width: 700px;
    line-height: 1.2;
    color: var(--text-dark);
    text-align: right;
}

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

.problem-grid-irregular {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 900px;
}

.problem-card {
    background: var(--bg-light);
    padding: 40px;
    border-radius: 12px;
    border-left: 4px solid var(--accent-color);
}

.problem-card.elevated {
    margin-left: 80px;
    box-shadow: var(--shadow-md);
}

.problem-card.elevated-right {
    margin-right: 80px;
    margin-left: 40px;
}

.problem-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

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

.insight-block {
    padding: 120px 20px;
    background: linear-gradient(to bottom, #ffffff, #f8f9fa);
}

.insight-visual {
    flex: 1;
    min-width: 300px;
}

.insight-visual img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
}

.insight-text {
    flex: 1;
}

.insight-text h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 25px;
    line-height: 1.3;
}

.insight-text p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 20px;
}

.trust-builder {
    padding: 80px 20px;
    background: var(--primary-color);
    color: white;
}

.trust-stat-group {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 60px;
}

.trust-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.stat-number {
    font-size: 56px;
    font-weight: 800;
    display: block;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    opacity: 0.9;
    max-width: 200px;
}

.testimonial-inline {
    padding: 100px 20px;
    background: var(--bg-light);
}

.testimonial-large {
    font-size: 24px;
    line-height: 1.7;
    font-style: italic;
    color: var(--text-dark);
    border-left: 5px solid var(--secondary-color);
    padding-left: 40px;
    margin: 0;
}

.testimonial-large cite {
    display: block;
    margin-top: 25px;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    color: var(--text-gray);
}

.how-it-works-asymmetric {
    padding: 100px 20px;
    background: var(--bg-white);
}

.steps-offset-layout {
    display: flex;
    flex-direction: column;
    gap: 50px;
    max-width: 900px;
    margin: 0 auto;
}

.step-card {
    padding: 40px;
    background: var(--bg-light);
    border-radius: 12px;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.step-card.step-left {
    margin-right: 100px;
}

.step-card.step-right {
    margin-left: 100px;
}

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

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

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

.services-pricing {
    padding: 120px 20px;
    background: linear-gradient(to bottom, #f8f9fa, #ffffff);
}

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

.services-grid-asymmetric {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.service-card {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 40px;
    transition: all 0.3s;
}

.service-card:nth-child(odd) {
    margin-left: 60px;
}

.service-card:nth-child(even) {
    margin-right: 60px;
}

.service-card.featured {
    border: 3px solid var(--primary-color);
    box-shadow: var(--shadow-md);
}

.service-card.highlighted {
    background: linear-gradient(135deg, #f8f9fa 0%, #e8f4f8 100%);
    border: 2px solid var(--secondary-color);
}

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

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
    gap: 20px;
}

.service-header h3 {
    font-size: 26px;
    font-weight: 700;
    color: var(--text-dark);
    flex: 1;
}

.price-tag {
    font-size: 28px;
    font-weight: 800;
    color: var(--primary-color);
    white-space: nowrap;
}

.service-desc {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-gray);
    margin-bottom: 25px;
}

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

.service-features li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    color: var(--text-gray);
    font-size: 16px;
}

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

.cta-sticky-section {
    padding: 80px 20px;
    background: var(--bg-white);
}

.cta-box-elevated {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    padding: 60px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-lg);
    transform: rotate(-1deg);
}

.cta-box-elevated h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.cta-box-elevated p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.95;
}

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

.form-layout-split {
    display: flex;
    gap: 80px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: flex-start;
}

.form-intro-side {
    flex: 1;
    position: sticky;
    top: 100px;
}

.form-intro-side h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.3;
}

.form-intro-side > p {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-gray);
    margin-bottom: 30px;
}

.form-benefits {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
}

.benefit-icon {
    color: var(--secondary-color);
    font-weight: 700;
    font-size: 20px;
}

.form-container {
    flex: 1;
    background: var(--bg-white);
    padding: 50px;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
}

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 16px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.checkbox-group label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-weight: 400;
    font-size: 14px;
}

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

.checkbox-group a {
    color: var(--primary-color);
}

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

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

.final-trust {
    padding: 80px 20px;
    background: var(--bg-white);
}

.client-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 40px;
}

.client-item {
    font-size: 16px;
    color: var(--text-light);
    font-weight: 500;
    padding: 15px 25px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
}

.footer {
    background: var(--text-dark);
    color: white;
    padding: 60px 20px 30px;
}

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

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

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 20px;
}

.footer-col p {
    font-size: 14px;
    line-height: 1.7;
    opacity: 0.8;
}

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

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

.footer-col a {
    color: white;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s;
    font-size: 14px;
}

.footer-col a:hover {
    opacity: 1;
}

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

.footer-bottom p {
    font-size: 14px;
    opacity: 0.7;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--text-dark);
    color: white;
    padding: 25px 20px;
    box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.2);
    z-index: 10000;
    transition: transform 0.3s;
}

.cookie-banner.hidden {
    transform: translateY(100%);
}

.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;
    font-size: 15px;
    margin: 0;
}

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

.btn-accept,
.btn-reject {
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 14px;
}

.btn-accept {
    background: var(--secondary-color);
    color: white;
}

.btn-accept:hover {
    background: #00a3c0;
}

.btn-reject {
    background: transparent;
    color: white;
    border: 2px solid white;
}

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

.page-hero-simple {
    margin-top: 70px;
    padding: 100px 20px 60px;
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-white) 100%);
    text-align: center;
}

.page-hero-simple h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 20px;
    color: var(--text-gray);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

.about-story {
    padding: 80px 20px;
    background: var(--bg-white);
}

.about-story h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 30px;
}

.about-story p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 20px;
}

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

.team-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
}

.team-member {
    flex: 1;
    min-width: 250px;
    max-width: 280px;
    text-align: center;
}

.member-photo {
    width: 200px;
    height: 200px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
}

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

.team-member h3 {
    font-size: 22px;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.member-role {
    font-size: 15px;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 15px;
}

.team-member p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-gray);
}

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

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

.value-card {
    flex: 1;
    min-width: 250px;
    padding: 40px;
    background: var(--bg-light);
    border-radius: 12px;
    border-left: 4px solid var(--secondary-color);
}

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

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

.cta-about {
    padding: 80px 20px;
    background: var(--primary-color);
    text-align: center;
    color: white;
}

.cta-about h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.cta-about p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.95;
}

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

.cta-about .cta-primary:hover {
    background: var(--bg-light);
}

.services-detailed {
    padding: 80px 20px;
}

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

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

.service-detail-block.featured-service {
    background: linear-gradient(135deg, #f8f9fa 0%, #e8f4f8 100%);
    padding: 60px;
    border-radius: 20px;
    margin-bottom: 100px;
}

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

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

.price-highlight {
    font-size: 32px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.service-detail-content > p {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-gray);
    margin-bottom: 25px;
}

.service-detail-content h3 {
    font-size: 22px;
    font-weight: 700;
    margin-top: 30px;
    margin-bottom: 15px;
}

.detailed-list {
    list-style: none;
    margin-bottom: 25px;
}

.detailed-list li {
    padding: 8px 0;
    padding-left: 30px;
    position: relative;
    color: var(--text-gray);
    font-size: 16px;
}

.detailed-list li::before {
    content: "•";
    position: absolute;
    left: 10px;
    color: var(--secondary-color);
    font-weight: 700;
    font-size: 20px;
}

.service-detail-visual {
    flex: 1;
    max-width: 500px;
}

.service-detail-visual img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
}

.cta-services {
    padding: 80px 20px;
    background: var(--bg-light);
    text-align: center;
}

.cta-services h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.cta-services p {
    font-size: 18px;
    color: var(--text-gray);
    margin-bottom: 30px;
}

.contact-section {
    padding: 80px 20px;
}

.contact-layout {
    max-width: 900px;
    margin: 0 auto;
}

.contact-info-side h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 40px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-bottom: 60px;
}

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

.contact-item p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-gray);
}

.contact-item a {
    color: var(--primary-color);
    text-decoration: none;
}

.contact-item a:hover {
    text-decoration: underline;
}

.detail-note {
    font-size: 15px;
    color: var(--text-light);
    margin-top: 8px;
    font-style: italic;
}

.contact-extra {
    margin-top: 60px;
}

.contact-extra h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 30px;
}

.faq-item {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--border-color);
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-item h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-dark);
}

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

.thanks-section {
    margin-top: 70px;
    padding: 100px 20px;
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.thanks-content {
    text-align: center;
}

.thanks-icon {
    font-size: 80px;
    color: var(--secondary-color);
    margin-bottom: 30px;
}

.thanks-content h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
}

.thanks-message {
    font-size: 20px;
    color: var(--text-gray);
    margin-bottom: 50px;
}

.thanks-next-steps {
    background: var(--bg-light);
    padding: 40px;
    border-radius: 12px;
    margin-bottom: 40px;
    text-align: left;
}

.thanks-next-steps h2 {
    font-size: 28px;
    margin-bottom: 20px;
}

.steps-list {
    padding-left: 20px;
}

.steps-list li {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 15px;
}

.thanks-service-info {
    background: var(--secondary-color);
    color: white;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.thanks-info {
    margin-bottom: 40px;
}

.thanks-info p {
    font-size: 16px;
    color: var(--text-gray);
}

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

.legal-page {
    margin-top: 70px;
    padding: 80px 20px;
    background: var(--bg-white);
}

.legal-page h1 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 10px;
}

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

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

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

.legal-page h4 {
    font-size: 18px;
    font-weight: 600;
    margin-top: 20px;
    margin-bottom: 10px;
}

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

.legal-page ul,
.legal-page ol {
    margin-bottom: 20px;
    padding-left: 30px;
}

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

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

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

.legal-note {
    background: var(--bg-light);
    padding: 15px 20px;
    border-left: 4px solid var(--secondary-color);
    margin: 20px 0;
    font-size: 15px;
}

.legal-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
}

.legal-table thead {
    background: var(--bg-light);
}

.legal-table th {
    padding: 15px;
    text-align: left;
    font-weight: 600;
    border-bottom: 2px solid var(--border-color);
}

.legal-table td {
    padding: 15px;
    border-bottom: 1px solid var(--border-color);
    font-size: 15px;
    color: var(--text-gray);
}

.legal-table code {
    background: var(--bg-light);
    padding: 2px 6px;
    border-radius: 4px;
    font-family: monospace;
    font-size: 14px;
}

@media (max-width: 968px) {
    .hero-content-offset {
        flex-direction: column;
        padding: 60px 20px;
        gap: 40px;
    }

    .hero-title-large {
        font-size: 40px;
    }

    .hero-intro {
        font-size: 18px;
    }

    .container-split {
        flex-direction: column;
        gap: 40px;
    }

    .form-layout-split {
        flex-direction: column;
        gap: 40px;
    }

    .form-intro-side {
        position: static;
    }

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

    .step-card.step-left,
    .step-card.step-right {
        margin-left: 0;
        margin-right: 0;
    }

    .service-card:nth-child(odd),
    .service-card:nth-child(even) {
        margin-left: 0;
        margin-right: 0;
    }

    .problem-card.elevated,
    .problem-card.elevated-right {
        margin-left: 0;
        margin-right: 0;
    }

    .section-title-offset-right {
        text-align: left;
        margin-left: 0;
    }

    .services-intro {
        text-align: left;
        margin-left: 0;
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 60px;
        left: -100%;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 30px;
        box-shadow: var(--shadow-md);
        transition: left 0.3s;
        gap: 20px;
    }

    .nav-links.active {
        left: 0;
    }

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

    .hero-title-large {
        font-size: 32px;
    }

    .section-title-offset,
    .section-title-offset-right,
    .section-title-center {
        font-size: 32px;
    }

    .page-hero-simple h1 {
        font-size: 36px;
    }

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

    .cookie-buttons {
        width: 100%;
        flex-direction: column;
    }

    .btn-accept,
    .btn-reject {
        width: 100%;
    }

    .trust-stat-group {
        flex-direction: column;
        gap: 40px;
    }

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

    .cta-box-elevated {
        padding: 40px 30px;
        transform: rotate(0deg);
    }

    .thanks-content h1 {
        font-size: 36px;
    }

    .thanks-icon {
        font-size: 60px;
    }

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

    .thanks-actions a {
        width: 100%;
        text-align: center;
    }
}