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

:root {
    --primary-color: #2c3e50;
    --secondary-color: #e74c3c;
    --accent-color: #3498db;
    --text-color: #333;
    --light-bg: #f8f9fa;
    --border-color: #ddd;
    --success-color: #2ecc71;
}

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

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);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(44, 62, 80, 0.98);
    color: white;
    padding: 20px;
    z-index: 10000;
    display: none;
}

.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 {
    flex: 1;
    margin: 0;
    min-width: 300px;
}

.cookie-content a {
    color: #3498db;
}

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

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

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

.btn-accept:hover {
    background: #27ae60;
}

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

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

.main-nav {
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.nav-menu {
    list-style: none;
    display: flex;
    gap: 40px;
}

.nav-menu a {
    color: var(--text-color);
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.hero-split {
    display: flex;
    min-height: 600px;
    max-width: 1400px;
    margin: 0 auto;
}

.hero-left {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-left h1 {
    font-size: 48px;
    line-height: 1.2;
    color: var(--primary-color);
    margin-bottom: 24px;
}

.hero-left p {
    font-size: 20px;
    color: #555;
    margin-bottom: 32px;
    max-width: 540px;
}

.hero-right {
    flex: 1;
    overflow: hidden;
}

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

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

.cta-primary:hover {
    background: #c0392b;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(231, 76, 60, 0.3);
}

.cta-secondary {
    display: inline-block;
    background: transparent;
    color: var(--accent-color);
    padding: 14px 36px;
    font-size: 16px;
    font-weight: 600;
    border: 2px solid var(--accent-color);
    border-radius: 6px;
    transition: all 0.3s ease;
}

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

.intro-split {
    display: flex;
    max-width: 1400px;
    margin: 80px auto;
    gap: 60px;
    padding: 0 40px;
}

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

.intro-image {
    flex: 1;
}

.intro-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.intro-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.intro-text h2 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.intro-text p {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 16px;
}

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

.services-header {
    max-width: 800px;
    margin: 0 auto 60px;
    text-align: center;
}

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

.services-header p {
    font-size: 20px;
    color: #666;
}

.services-grid-split {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.service-card-split {
    display: flex;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.service-card-split:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

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

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

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

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

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

.service-content p {
    font-size: 17px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 20px;
}

.service-price {
    font-size: 32px;
    font-weight: 700;
    color: var(--secondary-color);
    margin: 24px 0;
}

.service-cta {
    align-self: flex-start;
    background: var(--accent-color);
    color: white;
    padding: 12px 28px;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.service-cta:hover {
    background: #2980b9;
    transform: translateX(4px);
}

.trust-split {
    display: flex;
    max-width: 1400px;
    margin: 80px auto;
    gap: 80px;
    padding: 0 40px;
}

.trust-left {
    flex: 1;
}

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

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

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

.trust-item p {
    font-size: 17px;
    color: #555;
    line-height: 1.7;
}

.trust-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.testimonial-card {
    background: white;
    padding: 32px;
    border-radius: 8px;
    border-left: 4px solid var(--accent-color);
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.testimonial-card p {
    font-size: 17px;
    font-style: italic;
    color: #444;
    margin-bottom: 16px;
    line-height: 1.7;
}

.testimonial-author {
    font-size: 14px;
    color: #777;
    font-weight: 600;
}

.process-split {
    background: var(--primary-color);
    color: white;
    padding: 80px 40px;
}

.process-header {
    text-align: center;
    margin-bottom: 60px;
}

.process-header h2 {
    font-size: 42px;
}

.process-steps {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.step-split {
    display: flex;
    align-items: center;
    gap: 40px;
}

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

.step-number {
    font-size: 72px;
    font-weight: 700;
    color: rgba(255,255,255,0.2);
    min-width: 120px;
    text-align: center;
}

.step-content h3 {
    font-size: 28px;
    margin-bottom: 12px;
}

.step-content p {
    font-size: 18px;
    line-height: 1.7;
    color: rgba(255,255,255,0.9);
}

.cta-form-split {
    display: flex;
    max-width: 1400px;
    margin: 80px auto;
    gap: 60px;
    padding: 0 40px;
}

.form-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.form-left h2 {
    font-size: 38px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.form-left p {
    font-size: 18px;
    color: #555;
    margin-bottom: 28px;
}

.form-benefits {
    list-style: none;
}

.form-benefits li {
    font-size: 17px;
    padding: 12px 0;
    padding-left: 32px;
    position: relative;
    color: #555;
}

.form-benefits li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: 700;
    font-size: 20px;
}

.form-right {
    flex: 1;
}

.contact-form {
    background: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

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

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

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

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

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

.btn-submit:hover {
    background: #c0392b;
}

.main-footer {
    background: var(--primary-color);
    color: white;
    padding: 60px 40px 20px;
}

.footer-split {
    max-width: 1400px;
    margin: 0 auto 40px;
    display: flex;
    gap: 60px;
}

.footer-col {
    flex: 1;
}

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

.footer-col p {
    font-size: 15px;
    color: rgba(255,255,255,0.8);
    line-height: 1.7;
}

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

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

.footer-col ul li a {
    color: rgba(255,255,255,0.8);
    font-size: 15px;
    transition: color 0.3s ease;
}

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

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

.about-hero-split,
.services-hero-split,
.contact-hero-split {
    display: flex;
    min-height: 500px;
    max-width: 1400px;
    margin: 0 auto;
}

.about-hero-left,
.services-hero-left,
.contact-hero-left {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-hero-left h1,
.services-hero-left h1,
.contact-hero-left h1 {
    font-size: 44px;
    line-height: 1.2;
    color: var(--primary-color);
    margin-bottom: 24px;
}

.about-hero-left p,
.services-hero-left p,
.contact-hero-left p {
    font-size: 19px;
    color: #555;
    line-height: 1.7;
}

.about-hero-right,
.services-hero-right,
.contact-hero-right {
    flex: 1;
    overflow: hidden;
}

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

.story-split {
    display: flex;
    max-width: 1400px;
    margin: 80px auto;
    gap: 60px;
    padding: 0 40px;
}

.story-image {
    flex: 1;
}

.story-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.story-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

.story-text p {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 16px;
}

.values-split {
    background: var(--light-bg);
    padding: 80px 40px;
}

.values-header {
    text-align: center;
    margin-bottom: 60px;
}

.values-header h2 {
    font-size: 42px;
    color: var(--primary-color);
}

.values-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.value-card-split {
    display: flex;
    gap: 50px;
    align-items: center;
}

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

.value-icon {
    flex: 1;
}

.value-icon img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

.value-content {
    flex: 1;
}

.value-content h3 {
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.value-content p {
    font-size: 17px;
    line-height: 1.7;
    color: #555;
}

.team-split {
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 40px;
}

.team-intro {
    text-align: center;
    margin-bottom: 60px;
}

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

.team-intro p {
    font-size: 19px;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

.team-members {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.member-split {
    display: flex;
    gap: 50px;
    align-items: center;
}

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

.member-photo {
    flex: 1;
}

.member-photo img {
    width: 100%;
    max-width: 400px;
    border-radius: 8px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.member-info {
    flex: 1;
}

.member-info h3 {
    font-size: 30px;
    color: var(--primary-color);
    margin-bottom: 8px;
}

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

.member-info p {
    font-size: 17px;
    line-height: 1.7;
    color: #555;
}

.numbers-split {
    background: var(--accent-color);
    padding: 80px 40px;
    margin: 80px 0;
}

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

.number-item {
    text-align: center;
    color: white;
}

.number {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 10px;
}

.number-label {
    font-size: 18px;
    opacity: 0.95;
}

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

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 38px;
    color: white;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 20px;
    color: rgba(255,255,255,0.9);
    margin-bottom: 32px;
}

.services-detailed {
    max-width: 1400px;
    margin: 60px auto;
    padding: 0 40px;
    display: flex;
    flex-direction: column;
    gap: 80px;
}

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

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

.service-detail-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

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

.service-detail-content p {
    font-size: 17px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 24px;
}

.service-detail-content h4 {
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 12px;
    margin-top: 12px;
}

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

.service-includes li {
    padding: 8px 0;
    padding-left: 28px;
    position: relative;
    font-size: 16px;
    color: #555;
}

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

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

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

.price-note {
    font-size: 14px;
    color: #777;
    margin: 0;
}

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

.service-detail-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.pricing-note-section {
    background: var(--light-bg);
    padding: 60px 40px;
}

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

.pricing-note-content h3 {
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.pricing-note-content p {
    font-size: 17px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 16px;
}

.services-cta {
    background: var(--accent-color);
    padding: 80px 40px;
    text-align: center;
}

.services-cta-content h2 {
    font-size: 38px;
    color: white;
    margin-bottom: 16px;
}

.services-cta-content p {
    font-size: 20px;
    color: rgba(255,255,255,0.95);
    margin-bottom: 32px;
}

.contact-info-split {
    display: flex;
    max-width: 1400px;
    margin: 60px auto;
    gap: 60px;
    padding: 0 40px;
}

.contact-details {
    flex: 1;
}

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

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

.contact-item h4 {
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.contact-item p {
    font-size: 17px;
    line-height: 1.7;
    color: #555;
}

.contact-item a {
    color: var(--accent-color);
    font-weight: 600;
}

.hours-note {
    font-size: 14px;
    color: #777;
    font-style: italic;
    margin-top: 8px;
}

.contact-map {
    flex: 1;
    position: relative;
}

.contact-map img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.map-overlay {
    background: rgba(255,255,255,0.95);
    padding: 24px;
    border-radius: 8px;
    margin-top: -80px;
    position: relative;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.map-overlay p {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
    margin: 0;
}

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

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

.approach-content h2 {
    font-size: 38px;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 60px;
}

.approach-steps {
    display: flex;
    gap: 40px;
}

.approach-step {
    flex: 1;
    text-align: center;
}

.step-num {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--accent-color);
    color: white;
    font-size: 28px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.approach-step h3 {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.approach-step p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
}

.contact-faq-split {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 40px;
}

.faq-intro {
    text-align: center;
    margin-bottom: 50px;
}

.faq-intro h2 {
    font-size: 38px;
    color: var(--primary-color);
}

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

.faq-item {
    background: white;
    padding: 28px;
    border-radius: 8px;
    border-left: 4px solid var(--accent-color);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

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

.faq-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    margin: 0;
}

.sticky-contact-cta {
    background: var(--primary-color);
    padding: 60px 40px;
    text-align: center;
}

.sticky-cta-content h3 {
    font-size: 32px;
    color: white;
    margin-bottom: 24px;
}

.thanks-split {
    display: flex;
    min-height: 600px;
    max-width: 1400px;
    margin: 40px auto;
}

.thanks-content {
    flex: 1;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.thanks-icon {
    margin-bottom: 32px;
}

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

.thanks-message {
    font-size: 19px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 600px;
}

.thanks-info {
    background: var(--light-bg);
    padding: 32px;
    border-radius: 8px;
    margin-bottom: 32px;
    width: 100%;
    max-width: 700px;
}

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

.thanks-steps {
    display: flex;
    gap: 24px;
    justify-content: space-around;
    flex-wrap: wrap;
}

.thanks-step {
    flex: 1;
    min-width: 180px;
}

.thanks-step strong {
    display: block;
    font-size: 16px;
    color: var(--accent-color);
    margin-bottom: 8px;
}

.thanks-step p {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
}

.thanks-service-info {
    background: white;
    padding: 20px;
    border-radius: 8px;
    border: 2px solid var(--accent-color);
    margin-bottom: 32px;
    display: none;
}

.thanks-service-info p {
    font-size: 17px;
    color: #555;
    margin: 0;
}

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

.thanks-contact {
    font-size: 15px;
    color: #666;
}

.thanks-contact p {
    margin-bottom: 8px;
}

.thanks-image {
    flex: 1;
    overflow: hidden;
}

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

.legal-page {
    max-width: 900px;
    margin: 60px auto;
    padding: 0 40px;
}

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

.legal-updated {
    color: #777;
    font-size: 14px;
    margin-bottom: 40px;
    font-style: italic;
}

.legal-container h2 {
    font-size: 28px;
    color: var(--primary-color);
    margin-top: 40px;
    margin-bottom: 16px;
}

.legal-container h3 {
    font-size: 22px;
    color: var(--primary-color);
    margin-top: 28px;
    margin-bottom: 12px;
}

.legal-container h4 {
    font-size: 18px;
    color: var(--primary-color);
    margin-top: 20px;
    margin-bottom: 10px;
}

.legal-container p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 16px;
}

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

.legal-container ul li {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 8px;
}

.legal-container a {
    color: var(--accent-color);
    font-weight: 600;
}

@media (max-width: 1024px) {
    .hero-split,
    .intro-split,
    .trust-split,
    .cta-form-split,
    .about-hero-split,
    .services-hero-split,
    .contact-hero-split,
    .story-split,
    .team-members .member-split,
    .service-detail-split,
    .contact-info-split {
        flex-direction: column;
    }

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

    .service-card-split.reverse,
    .value-card-split.reverse,
    .intro-split.reverse,
    .step-split.reverse,
    .member-split.reverse,
    .service-detail-split.reverse {
        flex-direction: column;
    }

    .hero-left,
    .about-hero-left,
    .services-hero-left,
    .contact-hero-left {
        padding: 60px 40px;
    }

    .hero-left h1,
    .about-hero-left h1,
    .services-hero-left h1,
    .contact-hero-left h1 {
        font-size: 36px;
    }

    .service-content {
        padding: 40px 30px;
    }

    .approach-steps {
        flex-direction: column;
    }

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

    .numbers-grid {
        gap: 30px;
    }
}

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

    .nav-menu {
        gap: 20px;
        flex-wrap: wrap;
    }

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

    .hero-left p {
        font-size: 17px;
    }

    .intro-split,
    .trust-split,
    .cta-form-split,
    .story-split,
    .contact-info-split {
        gap: 40px;
        padding: 0 20px;
    }

    .services-preview,
    .values-split,
    .process-split,
    .contact-approach,
    .pricing-note-section,
    .services-cta,
    .sticky-contact-cta,
    .cta-about {
        padding: 60px 20px;
    }

    .services-header h2,
    .values-header h2,
    .process-header h2 {
        font-size: 32px;
    }

    .contact-form {
        padding: 30px 20px;
    }

    .thanks-content {
        padding: 40px 20px;
    }

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

    .legal-page {
        padding: 0 20px;
    }

    .cookie-content {
        flex-direction: column;
        gap: 16px;
    }
}