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

:root {
    --primary-color: #2d7a4f;
    --primary-dark: #1f5437;
    --primary-light: #3d9a64;
    --accent-color: #d4a574;
    --text-dark: #1a1a1a;
    --text-medium: #4a4a4a;
    --text-light: #7a7a7a;
    --bg-light: #f8f8f6;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --error-color: #c74444;
}

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

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

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

.container-asymmetric {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 30px;
}

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

.main-header {
    padding: 20px 0;
    background: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.brand-section .logo {
    font-size: 26px;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    letter-spacing: -0.5px;
}

.ad-disclosure {
    flex: 1;
    text-align: center;
}

.ad-label {
    font-size: 11px;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 4px 12px;
    background: var(--bg-light);
    border-radius: 3px;
    display: inline-block;
}

.main-nav {
    display: flex;
    gap: 30px;
}

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

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

.hero-asymmetric {
    padding: 80px 0 60px;
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-white) 100%);
    position: relative;
    overflow: hidden;
}

.hero-content-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 60px;
}

.hero-text-block {
    flex: 1 1 500px;
    padding-left: 40px;
}

.offset-left {
    transform: translateX(-20px);
}

.hero-title {
    font-size: 52px;
    line-height: 1.15;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 20px;
    line-height: 1.5;
    color: var(--text-medium);
    margin-bottom: 32px;
}

.hero-visual-block {
    flex: 1 1 500px;
    position: relative;
}

.offset-right {
    transform: translateX(30px) translateY(-10px);
}

.hero-visual-block img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    object-fit: cover;
}

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

.cta-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(45, 122, 79, 0.3);
}

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

.irregular-layout {
    position: relative;
}

.intro-block {
    max-width: 650px;
}

.narrow-left {
    margin-left: 0;
    margin-right: auto;
}

.intro-block h2 {
    font-size: 38px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 24px;
    line-height: 1.3;
}

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

.stats-card {
    position: absolute;
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--primary-color);
    color: var(--bg-white);
    padding: 40px;
    border-radius: 8px;
    width: 320px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.floating-right {
    right: 40px;
}

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

.stat-item:last-child {
    margin-bottom: 0;
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    line-height: 1.4;
    opacity: 0.95;
}

.challenge-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.challenge-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    align-items: center;
}

.challenge-text {
    flex: 1 1 500px;
}

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

.challenge-text p {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-medium);
    margin-bottom: 20px;
}

.challenge-visual {
    flex: 1 1 450px;
}

.challenge-visual img {
    width: 100%;
    height: auto;
    border-radius: 6px;
    object-fit: cover;
}

.services-showcase {
    padding: 100px 0;
    background: var(--bg-white);
}

.asymmetric-cards {
    background: var(--bg-white);
}

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

.offset-title {
    padding-left: 60px;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.irregular {
    justify-content: flex-start;
}

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

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

.large-card {
    flex: 1 1 calc(60% - 15px);
    min-width: 350px;
}

.medium-card {
    flex: 1 1 calc(40% - 15px);
    min-width: 300px;
}

.small-card {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 280px;
}

.service-image {
    width: 100%;
    height: 240px;
    overflow: hidden;
    background-color: var(--bg-light);
}

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

.service-card:hover .service-image img {
    transform: scale(1.05);
}

.service-content {
    padding: 30px;
}

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

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

.service-price {
    display: block;
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.btn-select-service {
    display: inline-block;
    padding: 12px 28px;
    background: var(--primary-color);
    color: var(--bg-white);
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

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

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

.floating-layout {
    position: relative;
}

.testimonial-wrapper {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.testimonial-block {
    background: var(--bg-white);
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.offset-block {
    margin-left: 60px;
    margin-right: 0;
}

.offset-block-reverse {
    margin-left: 0;
    margin-right: 60px;
}

.testimonial-block blockquote p {
    font-size: 20px;
    line-height: 1.6;
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.testimonial-block cite {
    font-size: 16px;
    color: var(--text-medium);
    font-style: normal;
}

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

.layered {
    position: relative;
}

.approach-visual {
    width: 100%;
    max-width: 500px;
}

.narrow-right {
    margin-left: auto;
    margin-right: 0;
    margin-bottom: 40px;
}

.approach-visual img {
    width: 100%;
    height: auto;
    border-radius: 6px;
    object-fit: cover;
}

.approach-text {
    max-width: 600px;
}

.wide-left {
    margin-left: 0;
    margin-right: auto;
}

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

.approach-text p {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-medium);
    margin-bottom: 24px;
}

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

.approach-list li {
    font-size: 17px;
    line-height: 1.5;
    color: var(--text-medium);
    padding-left: 30px;
    position: relative;
    margin-bottom: 12px;
}

.approach-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

.cta-inline {
    display: inline-block;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 17px;
    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);
}

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

.diagonal-layout {
    position: relative;
}

.form-wrapper {
    background: var(--bg-white);
    padding: 60px;
    border-radius: 8px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
}

.asymmetric-form {
    max-width: 700px;
    margin-left: auto;
    margin-right: 80px;
}

.form-intro {
    margin-bottom: 40px;
}

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

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

.main-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

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

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

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(45, 122, 79, 0.1);
}

.btn-submit {
    padding: 16px 40px;
    background: var(--primary-color);
    color: var(--bg-white);
    border: none;
    border-radius: 6px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    align-self: flex-start;
}

.btn-submit:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(45, 122, 79, 0.3);
}

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

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

.centered {
    text-align: center;
}

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

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

.trust-item {
    flex: 1 1 280px;
    max-width: 320px;
}

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

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

.disclaimer-section {
    padding: 60px 0;
    background: var(--bg-light);
}

.disclaimer-text {
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-medium);
    padding: 24px;
    background: var(--bg-white);
    border-left: 4px solid var(--accent-color);
    border-radius: 4px;
}

.main-footer {
    padding: 80px 0 30px;
    background: var(--text-dark);
    color: var(--bg-white);
}

.asymmetric-footer {
    background: var(--text-dark);
}

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

.footer-brand h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--bg-white);
}

.footer-brand p,
.footer-links,
.footer-legal,
.footer-contact {
    flex: 1 1 200px;
}

.footer-brand p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
}

.footer-links h4,
.footer-legal h4,
.footer-contact h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--bg-white);
}

.footer-links a,
.footer-legal a {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    margin-bottom: 10px;
    transition: color 0.3s;
}

.footer-links a:hover,
.footer-legal a:hover {
    color: var(--bg-white);
}

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

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

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

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

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

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

.cookie-content p {
    flex: 1 1 400px;
    font-size: 14px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.9);
}

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

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

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

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

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

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

.page-hero {
    padding: 80px 0 40px;
    background: var(--bg-light);
}

.minimal {
    background: var(--bg-light);
}

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

.page-subtitle {
    font-size: 20px;
    color: var(--text-medium);
}

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

.story-block {
    max-width: 700px;
}

.wide-right {
    margin-left: auto;
    margin-right: 0;
}

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

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

.story-visual img {
    width: 100%;
    height: auto;
    border-radius: 6px;
    object-fit: cover;
}

.philosophy-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.philosophy-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    align-items: center;
}

.offset-grid {
    gap: 60px;
}

.philosophy-text {
    flex: 1 1 500px;
}

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

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

.philosophy-visual {
    flex: 1 1 450px;
}

.philosophy-visual img {
    width: 100%;
    height: auto;
    border-radius: 6px;
    object-fit: cover;
}

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

.team-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 60px;
}

.team-member {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s;
}

.team-member:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.member-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
    background-color: var(--bg-light);
}

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

.member-info {
    padding: 30px;
}

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

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

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

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

.values-section h2 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 50px;
    color: var(--text-dark);
}

.values-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.stacked {
    gap: 32px;
}

.value-item {
    padding: 30px;
    background: var(--bg-white);
    border-radius: 6px;
    border-left: 4px solid var(--primary-color);
}

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

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

.mission-section {
    padding: 80px 0;
    background: var(--bg-white);
}

.mission-content {
    max-width: 700px;
}

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

.mission-content p {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-medium);
    margin-bottom: 20px;
}

.services-detail-section {
    padding: 80px 0;
    background: var(--bg-white);
}

.service-detail-card {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 80px;
    background: var(--bg-light);
    border-radius: 8px;
    overflow: hidden;
}

.service-detail-card.large {
    flex-direction: row;
}

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

.service-detail-card.small {
    flex-direction: row;
}

.service-detail-card.offset-left {
    margin-left: 0;
    margin-right: 60px;
}

.service-detail-card.offset-right {
    margin-left: 60px;
    margin-right: 0;
}

.service-detail-visual {
    flex: 1 1 450px;
}

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

.service-detail-content {
    flex: 1 1 500px;
    padding: 40px;
}

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

.price-tag {
    display: inline-block;
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.service-intro {
    font-size: 18px;
    line-height: 1.6;
    color: var(--text-medium);
    margin-bottom: 28px;
}

.service-detail-content h4 {
    font-size: 20px;
    font-weight: 700;
    margin-top: 24px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

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

.feature-list li {
    font-size: 16px;
    line-height: 1.5;
    color: var(--text-medium);
    padding-left: 28px;
    position: relative;
    margin-bottom: 10px;
}

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

.duration-info {
    font-size: 15px;
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 24px;
}

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

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

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

.cta-content {
    background: var(--primary-color);
    color: var(--bg-white);
    padding: 60px;
    border-radius: 8px;
    max-width: 700px;
}

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

.cta-content p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 32px;
    color: rgba(255, 255, 255, 0.95);
}

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

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.contact-section {
    padding: 80px 0;
    background: var(--bg-white);
}

.asymmetric-layout {
    position: relative;
}

.contact-info-block {
    max-width: 600px;
}

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

.contact-info-block p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-medium);
    margin-bottom: 40px;
}

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

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

.contact-item p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-medium);
    margin-bottom: 0;
}

.response-info {
    padding: 20px;
    background: var(--bg-light);
    border-radius: 6px;
}

.response-info p {
    font-size: 15px;
    color: var(--text-medium);
    margin-bottom: 0;
}

.contact-visual {
    width: 100%;
    max-width: 500px;
    margin-top: 40px;
}

.contact-visual img {
    width: 100%;
    height: auto;
    border-radius: 6px;
    object-fit: cover;
}

.location-section {
    padding: 60px 0;
    background: var(--bg-light);
}

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

.location-section p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-medium);
    margin-bottom: 16px;
}

.faq-section {
    padding: 80px 0;
    background: var(--bg-white);
}

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

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.faq-item {
    padding: 30px;
    background: var(--bg-light);
    border-radius: 6px;
}

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

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

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

.centered-layout {
    text-align: center;
}

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

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

.thanks-content h1 {
    font-size: 44px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.thanks-message {
    font-size: 20px;
    line-height: 1.6;
    color: var(--text-medium);
    margin-bottom: 40px;
}

.service-confirmation {
    padding: 24px;
    background: var(--bg-light);
    border-radius: 6px;
    margin-bottom: 40px;
}

.service-confirmation p {
    font-size: 17px;
    color: var(--text-dark);
    margin-bottom: 0;
}

.next-steps {
    text-align: left;
    max-width: 600px;
    margin: 0 auto 40px;
}

.next-steps h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-dark);
}

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

.steps-list li {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-medium);
    padding-left: 32px;
    position: relative;
    margin-bottom: 16px;
}

.steps-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 18px;
}

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

.contact-alternative p {
    font-size: 16px;
    color: var(--text-medium);
}

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

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

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

.btn-secondary {
    padding: 14px 32px;
    background: transparent;
    color: var(--primary-color);
    text-decoration: none;
    border: 2px solid var(--primary-color);
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s;
}

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

.legal-section {
    padding: 80px 0;
    background: var(--bg-white);
}

.legal-section h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-dark);
}

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

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

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

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

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

.legal-section li {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-medium);
    margin-bottom: 10px;
}

.legal-section a {
    color: var(--primary-color);
    text-decoration: none;
    border-bottom: 1px solid var(--primary-color);
}

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

@media (max-width: 1024px) {
    .stats-card {
        position: static;
        transform: none;
        margin-top: 40px;
        width: 100%;
        max-width: 400px;
    }

    .offset-left,
    .offset-right {
        transform: none;
    }

    .offset-block,
    .offset-block-reverse {
        margin-left: 0;
        margin-right: 0;
    }

    .asymmetric-form {
        margin-right: 0;
    }

    .service-detail-card.offset-left,
    .service-detail-card.offset-right {
        margin-left: 0;
        margin-right: 0;
    }
}

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

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

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

    .offset-title {
        padding-left: 0;
    }

    .service-card {
        flex: 1 1 100%;
    }

    .form-wrapper {
        padding: 40px 24px;
    }

    .main-nav {
        flex-direction: column;
        gap: 12px;
        width: 100%;
    }

    .header-grid {
        flex-direction: column;
        align-items: flex-start;
    }

    .ad-disclosure {
        text-align: left;
    }
}
