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

:root {
    --primary-color: #1a3a52;
    --secondary-color: #2c5f7c;
    --accent-color: #f39c12;
    --text-dark: #2c3e50;
    --text-light: #7f8c8d;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --success-color: #27ae60;
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);
}

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

.ad-disclosure {
    position: fixed;
    top: 0;
    right: 0;
    background-color: var(--accent-color);
    color: white;
    padding: 8px 20px;
    font-size: 12px;
    font-weight: 600;
    z-index: 1000;
    border-bottom-left-radius: 8px;
}

.nav-sidebar {
    position: fixed;
    left: 0;
    top: 0;
    width: 240px;
    height: 100vh;
    background-color: var(--primary-color);
    color: white;
    padding: 40px 0;
    display: flex;
    flex-direction: column;
    z-index: 900;
}

.nav-brand {
    font-size: 22px;
    font-weight: 700;
    padding: 0 30px;
    margin-bottom: 60px;
    color: white;
}

.nav-links {
    list-style: none;
    flex-grow: 1;
    padding: 0 30px;
}

.nav-links li {
    margin-bottom: 20px;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
    display: block;
    padding: 8px 0;
}

.nav-links a:hover,
.nav-links a.active {
    color: white;
}

.nav-footer {
    padding: 0 30px;
    margin-top: 40px;
    display: flex;
    flex-direction: column;
}

.nav-footer a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 13px;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.nav-footer a:hover {
    color: rgba(255, 255, 255, 0.8);
}

.main-offset {
    margin-left: 240px;
    width: calc(100% - 240px);
    padding: 60px 0 0 0;
}

.hero-asymmetric {
    display: flex;
    align-items: center;
    min-height: 600px;
    padding: 80px 60px 80px 100px;
    position: relative;
}

.hero-content-left {
    width: 48%;
    padding-right: 40px;
    position: relative;
    z-index: 2;
}

.hero-content-left h1 {
    font-size: 54px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 28px;
    color: var(--primary-color);
}

.hero-lead {
    font-size: 20px;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 36px;
}

.hero-image-offset {
    width: 52%;
    position: relative;
    margin-top: -60px;
}

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

.cta-primary {
    display: inline-block;
    background-color: var(--accent-color);
    color: white;
    padding: 16px 36px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 17px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.cta-secondary {
    display: inline-block;
    background-color: transparent;
    color: var(--primary-color);
    padding: 16px 36px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 17px;
    border: 2px solid var(--primary-color);
    transition: background-color 0.2s ease, color 0.2s ease;
}

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

.intro-overlap {
    display: flex;
    padding: 0 60px 60px 100px;
    margin-top: -80px;
    position: relative;
}

.intro-card {
    width: 58%;
    background-color: white;
    padding: 50px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    position: relative;
    z-index: 3;
}

.intro-card h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--primary-color);
}

.intro-card p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 18px;
    color: var(--text-dark);
}

.intro-stats {
    width: 38%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 60px;
}

.stat-item {
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 52px;
    font-weight: 800;
    color: var(--accent-color);
    margin-bottom: 8px;
}

.stat-label {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.5;
}

.problem-section {
    display: flex;
    align-items: center;
    padding: 100px 60px 100px 100px;
    background-color: var(--bg-light);
}

.problem-visual {
    width: 42%;
    position: relative;
    margin-right: -40px;
    z-index: 1;
}

.problem-visual img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: var(--shadow);
    transform: rotate(-3deg);
}

.problem-text {
    width: 58%;
    background-color: white;
    padding: 60px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    position: relative;
    z-index: 2;
}

.problem-text h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--primary-color);
}

.problem-text p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.problem-list {
    list-style: none;
    margin-bottom: 32px;
}

.problem-list li {
    padding-left: 28px;
    margin-bottom: 14px;
    position: relative;
    font-size: 16px;
    line-height: 1.6;
}

.problem-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: 700;
}

.cta-inline {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 17px;
    display: inline-block;
    padding: 12px 0;
    border-bottom: 2px solid var(--accent-color);
    transition: color 0.2s ease;
}

.cta-inline:hover {
    color: var(--secondary-color);
    border-bottom-color: var(--secondary-color);
}

.approach-grid {
    padding: 120px 60px 120px 100px;
}

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

.approach-cards {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.approach-card {
    width: 30%;
    background-color: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    margin-bottom: 30px;
    transition: transform 0.3s ease;
}

.approach-card:hover {
    transform: translateY(-8px);
}

.approach-card.highlight {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-20px);
}

.approach-card h4 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 16px;
}

.approach-card.highlight h4 {
    color: white;
}

.approach-card p {
    font-size: 16px;
    line-height: 1.6;
}

.approach-card.highlight p {
    color: rgba(255, 255, 255, 0.9);
}

.services-preview {
    padding: 100px 60px 100px 100px;
    background-color: var(--bg-light);
}

.services-header-offset {
    margin-bottom: 60px;
    margin-left: 80px;
}

.services-header-offset h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--primary-color);
}

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

.services-layout {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.service-card {
    width: 48%;
    background-color: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    margin-bottom: 40px;
    position: relative;
    transition: box-shadow 0.3s ease;
}

.service-card:hover {
    box-shadow: var(--shadow-lg);
}

.service-card.featured {
    width: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
}

.service-badge {
    position: absolute;
    top: -12px;
    right: 40px;
    background-color: var(--accent-color);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

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

.service-header h3 {
    font-size: 24px;
    font-weight: 700;
}

.service-card.featured h3 {
    color: white;
}

.service-price {
    font-size: 28px;
    font-weight: 800;
    color: var(--accent-color);
}

.service-card.featured .service-price {
    color: white;
}

.service-card p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.service-card.featured p {
    color: rgba(255, 255, 255, 0.95);
}

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

.service-features li {
    padding-left: 24px;
    margin-bottom: 10px;
    position: relative;
    font-size: 15px;
}

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

.service-card.featured .service-features li:before {
    color: white;
}

.service-select {
    width: 100%;
    background-color: var(--accent-color);
    color: white;
    border: none;
    padding: 14px 24px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.service-select:hover {
    background-color: #e67e22;
    transform: translateY(-2px);
}

.service-card.featured .service-select {
    background-color: white;
    color: var(--primary-color);
}

.service-card.featured .service-select:hover {
    background-color: var(--bg-light);
}

.form-section {
    padding: 100px 60px 100px 100px;
    display: flex;
    justify-content: space-between;
}

.form-container {
    width: 65%;
}

.form-container h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.form-intro {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 40px;
}

.contact-form {
    background-color: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

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

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

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

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

.form-submit {
    width: 100%;
    background-color: var(--accent-color);
    color: white;
    border: none;
    padding: 16px 24px;
    border-radius: 8px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.form-submit:hover {
    background-color: #e67e22;
    transform: translateY(-2px);
}

.form-sidebar {
    width: 30%;
    display: flex;
    flex-direction: column;
}

.info-box {
    background-color: var(--bg-light);
    padding: 28px;
    border-radius: 12px;
    margin-bottom: 24px;
}

.info-box h4 {
    font-size: 19px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.info-box p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-dark);
}

.trust-section {
    padding: 80px 60px 80px 100px;
    background-color: var(--bg-light);
}

.trust-section h3 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 48px;
    text-align: center;
    color: var(--primary-color);
}

.trust-grid {
    display: flex;
    justify-content: space-between;
}

.trust-item {
    width: 31%;
    background-color: white;
    padding: 36px;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

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

.cta-sticky-section {
    padding: 60px 60px 60px 100px;
}

.cta-sticky {
    background-color: var(--primary-color);
    padding: 32px 60px;
    border-radius: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cta-sticky span {
    font-size: 24px;
    font-weight: 700;
    color: white;
}

.cta-sticky-button {
    background-color: var(--accent-color);
    color: white;
    padding: 14px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: background-color 0.2s ease;
}

.cta-sticky-button:hover {
    background-color: #e67e22;
}

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

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

.footer-col {
    width: 23%;
}

.footer-col h5 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 16px;
}

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

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

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

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

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

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

.footer-bottom p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 12px;
}

.disclaimer {
    font-size: 12px;
    line-height: 1.6;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: white;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.1);
    padding: 24px 60px 24px 340px;
    z-index: 1000;
    display: none;
    align-items: center;
}

.cookie-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

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

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

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

.cookie-accept,
.cookie-reject {
    padding: 10px 24px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: background-color 0.2s ease;
}

.cookie-accept {
    background-color: var(--success-color);
    color: white;
}

.cookie-accept:hover {
    background-color: #229954;
}

.cookie-reject {
    background-color: var(--border-color);
    color: var(--text-dark);
}

.cookie-reject:hover {
    background-color: #bdc3c7;
}

.about-hero {
    display: flex;
    align-items: center;
    padding: 80px 60px 80px 100px;
    min-height: 500px;
}

.about-intro {
    width: 55%;
    padding-right: 60px;
}

.about-intro h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 24px;
    color: var(--primary-color);
}

.lead-text {
    font-size: 20px;
    line-height: 1.6;
    color: var(--text-light);
}

.about-image {
    width: 45%;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.story-section {
    padding: 100px 60px 100px 140px;
    background-color: var(--bg-light);
}

.story-content {
    max-width: 800px;
}

.story-content h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 28px;
    color: var(--primary-color);
}

.story-content p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.values-overlap {
    padding: 100px 60px 100px 100px;
}

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

.values-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.value-card {
    width: 46%;
    background-color: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    margin-bottom: 40px;
}

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

.value-card.offset-bottom {
    margin-bottom: 80px;
}

.value-card h3 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--primary-color);
}

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

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

.team-section h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.team-intro {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 48px;
    max-width: 700px;
}

.team-cards {
    display: flex;
    justify-content: space-between;
}

.team-member {
    width: 31%;
    background-color: white;
    padding: 36px;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.team-member h4 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--primary-color);
}

.role {
    font-size: 14px;
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 16px;
    display: block;
}

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

.approach-detailed {
    display: flex;
    align-items: center;
    padding: 100px 60px 100px 100px;
}

.approach-text {
    width: 55%;
    padding-right: 60px;
}

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

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

.approach-visual {
    width: 45%;
}

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

.commitment-section {
    padding: 80px 60px 80px 100px;
    background-color: var(--bg-light);
    max-width: 900px;
    margin: 0 auto;
}

.commitment-section h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--primary-color);
}

.commitment-section p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.cta-about {
    padding: 100px 60px 100px 100px;
    text-align: center;
}

.cta-about h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.cta-about p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 36px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.services-hero {
    padding: 80px 60px 60px 100px;
}

.services-hero h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 24px;
    color: var(--primary-color);
}

.services-lead {
    font-size: 20px;
    line-height: 1.6;
    color: var(--text-light);
    max-width: 800px;
}

.services-detailed {
    padding: 60px 60px 100px 100px;
}

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

.service-full.reverse {
    flex-direction: row-reverse;
}

.service-main {
    width: 60%;
    background-color: white;
    padding: 50px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    position: relative;
}

.service-full.reverse .service-main {
    margin-left: -40px;
    z-index: 2;
}

.service-full:not(.reverse) .service-main {
    margin-right: -40px;
    z-index: 2;
}

.badge-popular {
    background-color: var(--accent-color);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 16px;
}

.service-main h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.price-large {
    font-size: 36px;
    font-weight: 800;
    color: var(--accent-color);
    display: block;
    margin-bottom: 20px;
}

.service-description {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 28px;
    color: var(--text-dark);
}

.service-main h4 {
    font-size: 20px;
    font-weight: 700;
    margin-top: 28px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

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

.service-list li {
    padding-left: 24px;
    margin-bottom: 10px;
    position: relative;
    font-size: 15px;
}

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

.service-image {
    width: 40%;
    position: relative;
}

.service-full:not(.reverse) .service-image {
    margin-left: 0;
}

.service-full.reverse .service-image {
    margin-right: 0;
}

.service-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.comparison-section {
    padding: 80px 60px 100px 100px;
    background-color: var(--bg-light);
}

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

.comparison-table {
    background-color: white;
    border-radius: 12px;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.comparison-row {
    display: flex;
    border-bottom: 1px solid var(--border-color);
}

.comparison-row:last-child {
    border-bottom: none;
}

.comparison-row.header {
    background-color: var(--primary-color);
    color: white;
}

.comparison-cell {
    flex: 1;
    padding: 16px;
    font-size: 14px;
    text-align: center;
}

.comparison-cell.label {
    font-weight: 600;
    text-align: left;
}

.comparison-row.header .comparison-cell {
    font-weight: 700;
}

.contact-hero {
    padding: 80px 60px 60px 100px;
}

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

.contact-lead {
    font-size: 20px;
    color: var(--text-light);
}

.contact-layout {
    display: flex;
    padding: 60px 60px 100px 100px;
}

.contact-info {
    width: 45%;
    padding-right: 60px;
}

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

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

.info-block p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    margin-bottom: 6px;
}

.contact-map {
    width: 55%;
}

.map-placeholder {
    width: 100%;
    height: 400px;
    background-color: var(--bg-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow);
}

.map-placeholder p {
    font-size: 18px;
    color: var(--text-light);
}

.faq-section {
    padding: 100px 60px 100px 100px;
    background-color: var(--bg-light);
}

.faq-section h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 48px;
    color: var(--primary-color);
}

.faq-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.faq-item {
    width: 48%;
    background-color: white;
    padding: 32px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    margin-bottom: 32px;
}

.faq-item h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.faq-item p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-dark);
}

.cta-contact {
    padding: 80px 60px 80px 100px;
    text-align: center;
}

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

.cta-contact p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 32px;
}

.legal-hero {
    padding: 80px 60px 40px 100px;
    background-color: var(--bg-light);
}

.legal-hero h1 {
    font-size: 44px;
    font-weight: 800;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.legal-date {
    font-size: 15px;
    color: var(--text-light);
}

.legal-content {
    padding: 60px 60px 100px 100px;
    max-width: 1000px;
}

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

.legal-content h3 {
    font-size: 22px;
    font-weight: 700;
    margin-top: 32px;
    margin-bottom: 16px;
    color: var(--secondary-color);
}

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

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

.legal-content ul {
    margin-bottom: 20px;
    padding-left: 24px;
}

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

.legal-content ol {
    margin-bottom: 20px;
    padding-left: 24px;
}

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

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

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
}

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

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

.thanks-hero {
    display: flex;
    align-items: center;
    padding: 80px 60px 80px 100px;
    min-height: 500px;
}

.thanks-content {
    width: 60%;
    padding-right: 60px;
}

.thanks-content h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--success-color);
}

.thanks-lead {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 40px;
}

.thanks-info {
    background-color: var(--bg-light);
    padding: 32px;
    border-radius: 12px;
    margin-bottom: 32px;
}

.thanks-info h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.thanks-steps {
    list-style: none;
}

.thanks-steps li {
    padding-left: 28px;
    margin-bottom: 12px;
    position: relative;
    font-size: 16px;
}

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

.service-reminder {
    background-color: var(--primary-color);
    color: white;
    padding: 20px 28px;
    border-radius: 8px;
    margin-bottom: 32px;
}

.service-reminder p {
    font-size: 16px;
    margin: 0;
}

.thanks-actions {
    display: flex;
    gap: 16px;
}

.thanks-visual {
    width: 40%;
}

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

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

.thanks-additional h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 40px;
    color: var(--primary-color);
}

.additional-cards {
    display: flex;
    justify-content: space-between;
}

.additional-card {
    width: 31%;
    background-color: white;
    padding: 32px;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.additional-card h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.additional-card p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.additional-card a {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
}

.additional-card a:hover {
    text-decoration: underline;
}

@media (max-width: 1024px) {
    .nav-sidebar {
        width: 200px;
    }

    .main-offset {
        margin-left: 200px;
        width: calc(100% - 200px);
    }

    .footer {
        padding-left: 260px;
    }

    .cookie-banner {
        padding-left: 260px;
    }

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

    .approach-cards,
    .services-layout {
        flex-direction: column;
    }

    .approach-card,
    .service-card,
    .service-card.featured {
        width: 100%;
    }
}

@media (max-width: 768px) {
    body {
        flex-direction: column;
    }

    .nav-sidebar {
        width: 100%;
        height: auto;
        position: relative;
        padding: 20px;
    }

    .nav-links {
        flex-direction: row;
        flex-wrap: wrap;
        padding: 20px 0;
    }

    .nav-links li {
        margin-right: 20px;
        margin-bottom: 10px;
    }

    .nav-footer {
        flex-direction: row;
        flex-wrap: wrap;
        margin-top: 20px;
    }

    .nav-footer a {
        margin-right: 16px;
        margin-bottom: 8px;
    }

    .main-offset {
        margin-left: 0;
        width: 100%;
        padding-top: 20px;
    }

    .hero-asymmetric,
    .intro-overlap,
    .problem-section,
    .form-section,
    .about-hero,
    .contact-layout,
    .service-full {
        flex-direction: column;
        padding: 40px 20px;
    }

    .hero-content-left,
    .hero-image-offset,
    .intro-card,
    .intro-stats,
    .problem-visual,
    .problem-text,
    .form-container,
    .form-sidebar,
    .about-intro,
    .about-image,
    .approach-text,
    .approach-visual,
    .contact-info,
    .contact-map,
    .service-main,
    .service-image,
    .thanks-content,
    .thanks-visual {
        width: 100%;
        padding-right: 0;
        padding-left: 0;
        margin: 0;
    }

    .service-full:not(.reverse) .service-main,
    .service-full.reverse .service-main {
        margin: 0 0 20px 0;
    }

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

    .section-title {
        font-size: 32px;
    }

    .trust-grid,
    .team-cards,
    .additional-cards,
    .faq-grid,
    .values-grid,
    .cta-buttons {
        flex-direction: column;
    }

    .trust-item,
    .team-member,
    .additional-card,
    .faq-item,
    .value-card {
        width: 100%;
        margin-bottom: 20px;
    }

    .footer {
        padding: 40px 20px;
    }

    .footer-content {
        flex-direction: column;
    }

    .footer-col {
        width: 100%;
        margin-bottom: 24px;
    }

    .cookie-banner {
        padding: 20px;
    }

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

    .cookie-buttons {
        margin-top: 16px;
    }

    .comparison-table {
        overflow-x: auto;
    }

    .comparison-cell {
        font-size: 12px;
        padding: 10px 8px;
    }
}