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

:root {
    --primary-color: #1a472a;
    --secondary-color: #2d6a4f;
    --accent-color: #52b788;
    --text-dark: #1b263b;
    --text-light: #415a77;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #dee2e6;
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 6px 20px rgba(0, 0, 0, 0.12);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--bg-white);
}

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

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

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

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

.cookie-content p {
    margin: 0;
    flex: 1;
    min-width: 300px;
}

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

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

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s ease;
}

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

.btn-accept:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

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

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

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

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

.logo {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-color);
}

.ad-notice {
    font-size: 11px;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 4px 10px;
    background: var(--bg-light);
    border-radius: 4px;
}

.nav {
    display: flex;
    gap: 28px;
    align-items: center;
}

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

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

.nav a.active::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--secondary-color);
}

.hero-split {
    display: flex;
    min-height: 600px;
    align-items: stretch;
}

.hero-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 60px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--bg-white);
}

.hero-text h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 24px;
    font-weight: 800;
}

.hero-text p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 32px;
    opacity: 0.95;
}

.hero-right {
    flex: 1;
    background: var(--bg-light);
}

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

.btn-primary {
    display: inline-block;
    padding: 16px 36px;
    background: var(--accent-color);
    color: var(--bg-white);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background: var(--bg-white);
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

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

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

.intro-split {
    display: flex;
    align-items: center;
    padding: 80px 0;
}

.intro-split.reverse {
    flex-direction: row-reverse;
}

.intro-image {
    flex: 1;
    background: var(--bg-light);
}

.intro-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.intro-content {
    flex: 1;
    padding: 60px;
}

.intro-content h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: var(--primary-color);
    line-height: 1.3;
}

.intro-content p {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 20px;
}

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

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

.services-grid-split {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

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

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

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

.service-image {
    flex: 1;
    background: var(--bg-light);
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.service-info {
    flex: 1;
    padding: 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-info h3 {
    font-size: 26px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

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

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

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

.btn-select:hover {
    background: var(--primary-color);
    transform: translateX(8px);
}

.cta-center {
    text-align: center;
    margin-top: 60px;
}

.trust-split {
    display: flex;
    align-items: center;
    padding: 100px 0;
}

.trust-left {
    flex: 1;
    padding: 0 60px 0 0;
}

.trust-left h2 {
    font-size: 38px;
    margin-bottom: 28px;
    color: var(--primary-color);
    line-height: 1.3;
}

.trust-left p {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 20px;
}

.trust-right {
    flex: 1;
    background: var(--bg-light);
}

.trust-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 12px;
}

.form-section-split {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-white) 100%);
}

.form-wrapper-split {
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

.form-intro {
    flex: 1;
}

.form-intro h2 {
    font-size: 42px;
    margin-bottom: 24px;
    color: var(--primary-color);
}

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

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

.selected-service-box {
    background: var(--bg-light);
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 28px;
    display: none;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.selected-service-box.active {
    display: flex;
}

.selected-service-box .label {
    font-weight: 600;
    color: var(--text-dark);
}

.selected-service-box .service-name {
    color: var(--secondary-color);
    font-weight: 700;
    flex: 1;
}

.btn-clear {
    padding: 6px 16px;
    background: var(--text-light);
    color: var(--bg-white);
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 13px;
    transition: all 0.3s ease;
}

.btn-clear:hover {
    background: var(--text-dark);
}

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

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

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

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

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

.btn-submit {
    width: 100%;
    padding: 18px;
    background: var(--secondary-color);
    color: var(--bg-white);
    border: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 17px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

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

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

.testimonial-card {
    flex: 1;
    background: var(--bg-light);
    padding: 36px;
    border-radius: 12px;
    border-left: 4px solid var(--accent-color);
}

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

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

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

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

.footer-column {
    flex: 1;
}

.footer-column h3,
.footer-column h4 {
    margin-bottom: 20px;
    color: var(--bg-white);
}

.footer-column p,
.footer-column a {
    color: var(--bg-light);
    line-height: 1.8;
    text-decoration: none;
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
}

.footer-column a:hover {
    color: var(--accent-color);
}

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

.footer-disclaimer p {
    font-size: 13px;
    line-height: 1.7;
    color: var(--bg-light);
}

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

.footer-bottom p {
    font-size: 14px;
    color: var(--bg-light);
}

.page-hero-split {
    display: flex;
    min-height: 500px;
    align-items: stretch;
}

.page-hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 60px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    color: var(--bg-white);
}

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

.page-hero-content p {
    font-size: 19px;
    opacity: 0.95;
}

.page-hero-image {
    flex: 1;
    background: var(--bg-light);
}

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

.about-story-split {
    display: flex;
    padding: 100px 0;
    align-items: center;
}

.story-content {
    flex: 1;
    padding-right: 60px;
}

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

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

.story-image {
    flex: 1;
    background: var(--bg-light);
}

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

.values-split {
    display: flex;
    padding: 100px 0;
    background: var(--bg-light);
    align-items: center;
}

.values-image {
    flex: 1;
    background: var(--bg-white);
}

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

.values-content {
    flex: 1;
    padding-left: 60px;
}

.values-content h2 {
    font-size: 40px;
    margin-bottom: 40px;
    color: var(--primary-color);
}

.value-item {
    margin-bottom: 32px;
}

.value-item h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--secondary-color);
}

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

.team-split {
    padding: 100px 0;
}

.team-intro-split {
    display: flex;
    gap: 60px;
    align-items: center;
}

.team-text {
    flex: 1;
}

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

.team-image {
    flex: 1;
    background: var(--bg-light);
}

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

.approach-split {
    display: flex;
    padding: 100px 0;
    background: var(--bg-light);
    align-items: center;
}

.approach-image {
    flex: 1;
    background: var(--bg-white);
}

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

.approach-content {
    flex: 1;
    padding-left: 60px;
}

.approach-content h2 {
    font-size: 40px;
    margin-bottom: 28px;
    color: var(--primary-color);
}

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

.cta-split {
    padding: 100px 0;
}

.cta-box {
    text-align: center;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    color: var(--bg-white);
    padding: 80px 60px;
    border-radius: 16px;
}

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

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

.services-hero-split {
    display: flex;
    min-height: 450px;
    align-items: stretch;
}

.services-hero-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--bg-white);
}

.services-hero-left h1 {
    font-size: 46px;
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: 800;
}

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

.services-hero-right {
    flex: 1;
    background: var(--bg-light);
}

.services-hero-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.services-list {
    padding: 80px 0;
}

.service-detail-split {
    display: flex;
    margin-bottom: 80px;
    background: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

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

.service-detail-image {
    flex: 1;
    background: var(--bg-light);
}

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

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

.service-detail-content h2 {
    font-size: 34px;
    margin-bottom: 24px;
    color: var(--primary-color);
}

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

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

.service-features li {
    padding: 12px 0 12px 32px;
    position: relative;
    font-size: 15px;
    color: var(--text-dark);
}

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

.service-pricing-box {
    background: var(--bg-light);
    padding: 24px;
    border-radius: 8px;
    margin-bottom: 24px;
}

.price-main {
    font-size: 32px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 8px;
}

.price-note {
    font-size: 14px;
    color: var(--text-light);
}

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

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

.note-box h3 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.note-box p {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 32px;
    line-height: 1.7;
}

.contact-hero-split {
    display: flex;
    min-height: 450px;
    align-items: stretch;
}

.contact-hero-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    color: var(--bg-white);
}

.contact-hero-left h1 {
    font-size: 46px;
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: 800;
}

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

.contact-hero-right {
    flex: 1;
    background: var(--bg-light);
}

.contact-hero-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-info-split {
    padding: 100px 0;
}

.contact-wrapper-split {
    display: flex;
    gap: 80px;
}

.contact-details {
    flex: 1;
}

.contact-block {
    margin-bottom: 48px;
}

.contact-block h2 {
    font-size: 28px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.contact-block p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 8px;
}

.email-static {
    font-weight: 600;
    color: var(--text-dark);
}

.email-note {
    font-size: 14px;
    font-style: italic;
}

.schedule {
    background: var(--bg-light);
    padding: 20px;
    border-radius: 8px;
}

.schedule-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
}

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

.schedule-row .day {
    font-weight: 600;
    color: var(--text-dark);
}

.schedule-row .hours {
    color: var(--text-light);
}

.contact-block a {
    color: var(--secondary-color);
    font-weight: 600;
}

.contact-map-area {
    flex: 1;
}

.map-placeholder {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    height: 100%;
    min-height: 500px;
    background: var(--bg-light);
}

.map-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 32px;
    color: var(--bg-white);
}

.map-overlay p {
    font-size: 15px;
    line-height: 1.7;
}

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

.contact-directions h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 48px;
    color: var(--primary-color);
}

.directions-split {
    display: flex;
    gap: 60px;
}

.direction-item {
    flex: 1;
    background: var(--bg-white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.direction-item h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: var(--secondary-color);
}

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

.contact-cta-split {
    padding: 100px 0;
}

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

.thanks-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    background: var(--bg-white);
    padding: 60px;
    border-radius: 16px;
    box-shadow: var(--shadow-hover);
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background: var(--accent-color);
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    margin: 0 auto 32px;
}

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

.thanks-message {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 48px;
}

.thanks-details h2 {
    font-size: 28px;
    margin-bottom: 32px;
    color: var(--text-dark);
}

.next-steps {
    text-align: left;
    margin-bottom: 40px;
}

.step {
    display: flex;
    gap: 24px;
    margin-bottom: 32px;
}

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

.step-content h3 {
    font-size: 20px;
    margin-bottom: 8px;
    color: var(--primary-color);
}

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

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

.service-confirmation p {
    font-size: 16px;
    color: var(--text-dark);
}

.service-confirmation strong {
    color: var(--secondary-color);
}

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

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

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

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

.legal-page h1 {
    font-size: 48px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.legal-intro {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 48px;
}

.legal-content {
    background: var(--bg-white);
    padding: 60px;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

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

.legal-content h2:first-child {
    margin-top: 0;
}

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

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

.legal-content ul {
    margin: 16px 0 24px 24px;
}

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

.legal-content a {
    color: var(--secondary-color);
    font-weight: 600;
}

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

.cookies-table th,
.cookies-table td {
    padding: 14px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

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

.cookies-table td {
    color: var(--text-light);
    font-size: 15px;
}

@media (max-width: 1024px) {
    .hero-split,
    .intro-split,
    .trust-split,
    .form-wrapper-split,
    .about-story-split,
    .values-split,
    .team-intro-split,
    .approach-split,
    .services-hero-split,
    .service-detail-split,
    .contact-hero-split,
    .contact-wrapper-split,
    .directions-split,
    .page-hero-split {
        flex-direction: column;
    }

    .intro-split.reverse,
    .values-split.reverse,
    .approach-split.reverse,
    .service-detail-split.reverse {
        flex-direction: column;
    }

    .hero-left,
    .hero-text,
    .intro-content,
    .trust-left,
    .form-intro,
    .story-content,
    .values-content,
    .approach-content,
    .services-hero-left,
    .service-detail-content,
    .contact-hero-left,
    .page-hero-content {
        padding: 48px 32px;
    }

    .hero-split,
    .page-hero-split {
        min-height: auto;
    }

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

    .footer-content {
        flex-wrap: wrap;
    }

    .service-card-split,
    .service-card-split.reverse {
        flex-direction: column;
    }

    .map-placeholder {
        min-height: 400px;
    }

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

@media (max-width: 768px) {
    .hero-text h1,
    .page-hero-content h1 {
        font-size: 36px;
    }

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

    .intro-content h2,
    .trust-left h2,
    .story-content h2,
    .values-content h2,
    .approach-content h2 {
        font-size: 28px;
    }

    .nav {
        gap: 16px;
        flex-wrap: wrap;
    }

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

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

    .legal-content {
        padding: 32px 24px;
    }
}