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

:root {
    --primary-color: #2c3e50;
    --secondary-color: #27ae60;
    --accent-color: #3498db;
    --text-dark: #2c3e50;
    --text-light: #7f8c8d;
    --bg-light: #ecf0f1;
    --bg-white: #ffffff;
    --border-color: #dfe6e9;
    --error-color: #e74c3c;
    --success-color: #27ae60;
}

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

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

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

a:hover {
    color: var(--secondary-color);
}

.ad-disclosure {
    background-color: var(--text-dark);
    color: var(--bg-white);
    text-align: center;
    padding: 8px 15px;
    font-size: 12px;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-asymmetric {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    background-color: var(--bg-white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: relative;
}

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

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

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

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

.hero-offset {
    display: flex;
    align-items: center;
    min-height: 550px;
    padding: 80px 5% 60px 10%;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
}

.hero-text-block {
    flex: 0 0 55%;
    padding-right: 60px;
    position: relative;
    z-index: 2;
}

.hero-text-block h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 25px;
    color: var(--primary-color);
    font-weight: 800;
    letter-spacing: -1px;
}

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

.hero-image-block {
    flex: 0 0 45%;
    position: relative;
    margin-top: -40px;
}

.hero-image-block img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.cta-primary {
    display: inline-block;
    padding: 16px 40px;
    background-color: var(--secondary-color);
    color: var(--bg-white);
    font-weight: 600;
    font-size: 16px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.cta-primary:hover {
    background-color: #229954;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(39,174,96,0.3);
}

.intro-asymmetric {
    display: flex;
    padding: 100px 8% 100px 5%;
    align-items: flex-start;
    gap: 70px;
}

.intro-narrow {
    flex: 0 0 60%;
}

.intro-narrow h2 {
    font-size: 36px;
    line-height: 1.3;
    margin-bottom: 25px;
    color: var(--primary-color);
    font-weight: 700;
}

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

.intro-sidebar {
    flex: 0 0 35%;
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 40px;
}

.stat-card {
    background-color: var(--bg-light);
    padding: 30px;
    border-radius: 8px;
    border-left: 4px solid var(--secondary-color);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.stat-number {
    font-size: 42px;
    font-weight: 800;
    color: var(--secondary-color);
}

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

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

.problem-left {
    flex: 0 0 40%;
    position: relative;
    margin-left: -5%;
}

.problem-left img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.12);
}

.problem-right {
    flex: 0 0 55%;
}

.problem-right h2 {
    font-size: 34px;
    margin-bottom: 20px;
    color: var(--primary-color);
    font-weight: 700;
}

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

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

.cta-inline:hover {
    background-color: #1a252f;
    transform: translateX(5px);
}

.services-grid {
    padding: 100px 5%;
    background-color: var(--bg-white);
}

.section-header-offset {
    max-width: 600px;
    margin-bottom: 60px;
    padding-left: 5%;
}

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

.section-header-offset p {
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.7;
}

.service-cards-asymmetric {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.service-card {
    background-color: var(--bg-white);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 35px;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    position: relative;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
    border-color: var(--secondary-color);
}

.service-offset-1 {
    flex: 0 0 calc(60% - 20px);
    margin-left: 0;
}

.service-offset-2 {
    flex: 0 0 calc(35% - 20px);
    margin-top: 60px;
}

.service-offset-3 {
    flex: 0 0 calc(45% - 20px);
    margin-top: -30px;
}

.service-offset-4 {
    flex: 0 0 calc(50% - 20px);
}

.service-offset-5 {
    flex: 0 0 calc(100% - 0px);
    margin-left: 10%;
    margin-right: 10%;
}

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

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

.service-features {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 25px;
}

.service-features span {
    font-size: 14px;
    color: var(--text-dark);
    padding-left: 20px;
    position: relative;
}

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

.price-tag {
    font-size: 32px;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 20px;
    margin-top: auto;
}

.select-service {
    padding: 14px 28px;
    background-color: var(--accent-color);
    color: var(--bg-white);
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.select-service:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(52,152,219,0.3);
}

.trust-section {
    padding: 90px 5%;
    background: linear-gradient(to right, var(--bg-light) 0%, var(--bg-white) 100%);
}

.trust-content-wide {
    max-width: 1200px;
    margin: 0 auto;
}

.trust-content-wide h2 {
    font-size: 38px;
    margin-bottom: 50px;
    text-align: center;
    color: var(--primary-color);
    font-weight: 700;
}

.trust-blocks {
    display: flex;
    gap: 50px;
    justify-content: space-between;
}

.trust-item {
    flex: 1;
}

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

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

.testimonial-offset {
    padding: 100px 10% 100px 15%;
    background-color: var(--bg-white);
    display: flex;
    gap: 60px;
}

.testimonial-block {
    flex: 1;
    position: relative;
}

.testimonial-block:first-child {
    margin-top: 40px;
}

.testimonial-block:last-child {
    margin-top: -20px;
}

blockquote {
    background-color: var(--bg-light);
    padding: 35px;
    border-radius: 10px;
    border-left: 5px solid var(--secondary-color);
    position: relative;
}

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

cite {
    font-size: 15px;
    color: var(--text-light);
    font-style: normal;
    font-weight: 600;
}

.education-section {
    display: flex;
    align-items: center;
    padding: 80px 5%;
    gap: 70px;
}

.education-left {
    flex: 0 0 50%;
}

.education-left h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: var(--primary-color);
    font-weight: 700;
}

.education-left p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 18px;
}

.education-right {
    flex: 0 0 45%;
    margin-right: -5%;
}

.education-right img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.12);
}

.cta-secondary {
    display: inline-block;
    margin-top: 20px;
    padding: 14px 35px;
    background-color: var(--accent-color);
    color: var(--bg-white);
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.cta-secondary:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
}

.form-section-offset {
    padding: 100px 5% 100px 12%;
    background: linear-gradient(135deg, #ecf0f1 0%, #ffffff 100%);
}

.form-container {
    max-width: 700px;
    background-color: var(--bg-white);
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}

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

.form-container > p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 35px;
    line-height: 1.7;
}

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

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

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

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

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

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

.btn-submit:hover {
    background-color: #229954;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(39,174,96,0.3);
}

.disclaimer-section {
    padding: 60px 10%;
    background-color: #fff3cd;
    border-top: 3px solid #ffc107;
    border-bottom: 3px solid #ffc107;
}

.disclaimer-content h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--text-dark);
    font-weight: 700;
}

.disclaimer-content p {
    font-size: 14px;
    line-height: 1.8;
    color: var(--text-dark);
}

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

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

.footer-col {
    flex: 1;
}

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

.footer-col p {
    font-size: 14px;
    line-height: 1.7;
    color: #bdc3c7;
}

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

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

.footer-col a {
    color: #bdc3c7;
    font-size: 14px;
    transition: color 0.3s ease;
}

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

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

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

.footer-references ol {
    padding-left: 20px;
}

.footer-references li {
    font-size: 13px;
    line-height: 1.6;
    color: #bdc3c7;
    margin-bottom: 10px;
}

.footer-references a {
    color: #3498db;
}

.footer-references a:hover {
    color: #5dade2;
}

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

.footer-bottom p {
    font-size: 14px;
    color: #95a5a6;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--text-dark);
    color: var(--bg-white);
    padding: 25px 5%;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.2);
    z-index: 9999;
    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 {
    flex: 1;
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}

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

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

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

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

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

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

.about-hero {
    padding: 100px 10% 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #34495e 100%);
    color: var(--bg-white);
}

.about-hero-content h1 {
    font-size: 46px;
    line-height: 1.2;
    margin-bottom: 25px;
    font-weight: 800;
}

.about-hero-content p {
    font-size: 20px;
    line-height: 1.7;
    opacity: 0.9;
}

.story-section {
    display: flex;
    align-items: center;
    padding: 90px 5%;
    gap: 70px;
    background-color: var(--bg-white);
}

.story-content {
    flex: 0 0 55%;
}

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

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

.story-image {
    flex: 0 0 40%;
}

.story-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.12);
}

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

.values-offset h2 {
    font-size: 40px;
    margin-bottom: 60px;
    color: var(--primary-color);
    font-weight: 700;
}

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

.value-card {
    flex: 0 0 calc(48% - 20px);
    background-color: var(--bg-white);
    padding: 35px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

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

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

.team-section {
    padding: 90px 5%;
    background-color: var(--bg-white);
}

.team-intro {
    max-width: 700px;
    margin-bottom: 50px;
}

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

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

.team-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.12);
}

.approach-section {
    display: flex;
    align-items: center;
    padding: 90px 5%;
    gap: 60px;
    background-color: var(--bg-light);
}

.approach-left {
    flex: 0 0 42%;
}

.approach-left img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.12);
}

.approach-right {
    flex: 0 0 53%;
}

.approach-right h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: var(--primary-color);
    font-weight: 700;
}

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

.cta-about {
    padding: 100px 10%;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #27ae60 100%);
    text-align: center;
}

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

.cta-content p {
    font-size: 19px;
    color: var(--bg-white);
    opacity: 0.95;
    margin-bottom: 35px;
}

.btn-cta-large {
    display: inline-block;
    padding: 18px 50px;
    background-color: var(--bg-white);
    color: var(--secondary-color);
    font-weight: 700;
    font-size: 17px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.btn-cta-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.services-hero {
    padding: 100px 10%;
    background: linear-gradient(135deg, var(--accent-color) 0%, #2980b9 100%);
    color: var(--bg-white);
    text-align: center;
}

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

.services-hero p {
    font-size: 20px;
    opacity: 0.95;
}

.services-list-offset {
    padding: 100px 5%;
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.service-detail-card {
    background-color: var(--bg-white);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.service-detail-card:hover {
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

.service-detail-card:nth-child(odd) {
    margin-left: 5%;
    margin-right: 10%;
}

.service-detail-card:nth-child(even) {
    margin-left: 10%;
    margin-right: 5%;
}

.service-detail-header {
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-white) 100%);
    padding: 35px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.service-detail-header h2 {
    font-size: 30px;
    color: var(--primary-color);
    font-weight: 700;
}

.service-price-large {
    font-size: 36px;
    font-weight: 800;
    color: var(--secondary-color);
}

.service-detail-body {
    padding: 40px;
}

.service-detail-body p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 25px;
}

.service-detail-body h3 {
    font-size: 20px;
    margin-top: 25px;
    margin-bottom: 15px;
    color: var(--primary-color);
    font-weight: 700;
}

.service-checklist {
    list-style: none;
    padding-left: 0;
    margin-bottom: 25px;
}

.service-checklist li {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-dark);
    padding-left: 30px;
    margin-bottom: 12px;
    position: relative;
}

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

.services-faq {
    padding: 90px 10%;
    background-color: var(--bg-light);
}

.services-faq h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 60px;
    color: var(--primary-color);
    font-weight: 700;
}

.faq-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.faq-item {
    flex: 0 0 calc(48% - 20px);
    background-color: var(--bg-white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

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

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

.cta-services {
    padding: 80px 5%;
    background-color: var(--bg-white);
}

.cta-box {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #34495e 100%);
    border-radius: 12px;
    text-align: center;
}

.cta-box h2 {
    font-size: 34px;
    color: var(--bg-white);
    margin-bottom: 15px;
    font-weight: 700;
}

.cta-box p {
    font-size: 18px;
    color: var(--bg-white);
    opacity: 0.9;
    margin-bottom: 30px;
}

.btn-cta-secondary {
    display: inline-block;
    padding: 16px 45px;
    background-color: var(--secondary-color);
    color: var(--bg-white);
    font-weight: 600;
    font-size: 16px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.btn-cta-secondary:hover {
    background-color: #229954;
    transform: translateY(-2px);
}

.contact-hero {
    padding: 100px 10%;
    background: linear-gradient(135deg, var(--primary-color) 0%, #34495e 100%);
    color: var(--bg-white);
    text-align: center;
}

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

.contact-hero p {
    font-size: 20px;
    opacity: 0.95;
}

.contact-layout {
    display: flex;
    padding: 90px 5%;
    gap: 70px;
    align-items: flex-start;
}

.contact-info-block {
    flex: 0 0 50%;
}

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

.contact-item {
    margin-bottom: 40px;
}

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

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

.email-display {
    font-weight: 600;
    color: var(--primary-color);
}

.email-note,
.hours-note {
    font-size: 14px;
    color: var(--text-light);
    margin-top: 8px;
}

.contact-image-block {
    flex: 0 0 45%;
    margin-top: -50px;
}

.contact-image-block img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}

.contact-directions {
    padding: 80px 10%;
    background-color: var(--bg-light);
}

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

.directions-content h2 {
    font-size: 34px;
    margin-bottom: 25px;
    color: var(--primary-color);
    font-weight: 700;
}

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

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

.transport-list {
    list-style: none;
    padding-left: 0;
}

.transport-list li {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-dark);
    padding-left: 25px;
    margin-bottom: 12px;
    position: relative;
}

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

.contact-form-section {
    padding: 80px 10%;
    background-color: var(--bg-white);
    text-align: center;
}

.contact-form-intro {
    max-width: 700px;
    margin: 0 auto;
}

.contact-form-intro h2 {
    font-size: 34px;
    margin-bottom: 20px;
    color: var(--primary-color);
    font-weight: 700;
}

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

.btn-form-redirect {
    display: inline-block;
    padding: 16px 40px;
    background-color: var(--accent-color);
    color: var(--bg-white);
    font-weight: 600;
    font-size: 16px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.btn-form-redirect:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
}

.contact-faq {
    padding: 90px 10%;
    background-color: var(--bg-light);
}

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

.faq-contact-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 35px;
    max-width: 1100px;
    margin: 0 auto;
}

.faq-contact-item {
    flex: 0 0 calc(48% - 18px);
    background-color: var(--bg-white);
    padding: 28px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

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

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

.thanks-section {
    padding: 100px 10%;
    background-color: var(--bg-white);
}

.thanks-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.thanks-icon {
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
}

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

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

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

.selected-service-display {
    font-size: 17px;
    padding: 20px;
    background-color: var(--bg-light);
    border-radius: 8px;
    color: var(--text-dark);
}

.thanks-next-steps {
    text-align: left;
    max-width: 650px;
    margin: 0 auto 40px;
    background-color: var(--bg-light);
    padding: 35px;
    border-radius: 10px;
}

.thanks-next-steps h2 {
    font-size: 26px;
    margin-bottom: 20px;
    color: var(--primary-color);
    font-weight: 700;
}

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

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

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

.btn-primary {
    display: inline-block;
    padding: 16px 35px;
    background-color: var(--secondary-color);
    color: var(--bg-white);
    font-weight: 600;
    font-size: 16px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #229954;
    transform: translateY(-2px);
}

.btn-secondary {
    display: inline-block;
    padding: 16px 35px;
    background-color: var(--accent-color);
    color: var(--bg-white);
    font-weight: 600;
    font-size: 16px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
}

.thanks-reassurance {
    padding: 80px 10%;
    background-color: var(--bg-light);
}

.reassurance-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.reassurance-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--primary-color);
    font-weight: 700;
}

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

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 80px 5%;
}

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

.legal-update {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 40px;
}

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

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

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

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

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

.legal-content strong {
    font-weight: 700;
    color: var(--primary-color);
}

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

    .hero-text-block {
        flex: 1;
        padding-right: 0;
        margin-bottom: 40px;
    }

    .hero-image-block {
        flex: 1;
        margin-top: 0;
        width: 100%;
    }

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

    .intro-narrow,
    .intro-sidebar {
        flex: 1;
    }

    .problem-section {
        flex-direction: column;
    }

    .problem-left {
        flex: 1;
        margin-left: 0;
        width: 100%;
    }

    .problem-right {
        flex: 1;
    }

    .service-offset-1,
    .service-offset-2,
    .service-offset-3,
    .service-offset-4,
    .service-offset-5 {
        flex: 0 0 100%;
        margin: 0;
    }

    .trust-blocks {
        flex-direction: column;
        gap: 30px;
    }

    .testimonial-offset {
        flex-direction: column;
        padding: 80px 5%;
    }

    .testimonial-block:first-child,
    .testimonial-block:last-child {
        margin-top: 0;
    }

    .education-section,
    .story-section,
    .approach-section,
    .contact-layout {
        flex-direction: column;
    }

    .education-left,
    .education-right,
    .story-content,
    .story-image,
    .approach-left,
    .approach-right,
    .contact-info-block,
    .contact-image-block {
        flex: 1;
        width: 100%;
        margin: 0;
    }

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

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

    .values-grid,
    .faq-grid,
    .faq-contact-grid {
        flex-direction: column;
    }

    .value-card,
    .faq-item,
    .faq-contact-item {
        flex: 1;
    }

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

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

@media (max-width: 768px) {
    .nav-links {
        gap: 20px;
    }

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

    .intro-narrow h2,
    .problem-right h2,
    .education-left h2 {
        font-size: 28px;
    }

    .section-header-offset h2 {
        font-size: 32px;
    }

    .form-section-offset {
        padding: 60px 5%;
    }

    .form-container {
        padding: 30px;
    }
}
