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

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-dark);
    line-height: 1.7;
    overflow-x: hidden;
}

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

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

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

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

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

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

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

.navigation {
    background: var(--bg-white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
}

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

.brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    color: var(--text-dark);
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
}

.nav-links a:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transition: width 0.3s ease;
}

.nav-links a:hover:after,
.nav-links a.active:after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    transition: all 0.3s ease;
}

.split-hero {
    display: flex;
    min-height: 90vh;
}

.split-left {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 4rem 3rem;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.split-right {
    flex: 1;
    position: relative;
}

.hero-content {
    max-width: 600px;
}

.hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.hero-lead {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.hero-stats {
    display: flex;
    gap: 3rem;
    margin-bottom: 2rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-light);
}

.hero-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.btn-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--secondary-color);
    color: white;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

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

.btn-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: transparent;
    color: var(--primary-color);
    font-weight: 600;
    border-radius: 4px;
    border: 2px solid var(--primary-color);
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 1rem;
}

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

.alternating-section {
    padding: 6rem 0;
    background: var(--bg-white);
}

.alternating-section-reverse {
    padding: 6rem 0;
    background: var(--bg-light);
}

.split-content {
    display: flex;
    gap: 4rem;
    align-items: center;
}

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

.content-block {
    flex: 1;
}

.content-block h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.content-block p {
    margin-bottom: 1.25rem;
    font-size: 1.1rem;
    color: var(--text-light);
}

.content-image {
    flex: 1;
    height: 500px;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

.feature-list {
    list-style: none;
    margin-top: 2rem;
}

.feature-list li {
    padding: 0.75rem 0 0.75rem 2rem;
    position: relative;
    font-size: 1.05rem;
    color: var(--text-light);
}

.feature-list li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.2rem;
}

.services-showcase {
    padding: 6rem 0;
    background: var(--bg-light);
}

.section-header-center {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.section-header-center h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.section-header-center p {
    font-size: 1.2rem;
    color: var(--text-light);
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.service-card {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 300px;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.service-visual {
    height: 250px;
    overflow: hidden;
}

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

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

.service-info {
    padding: 2rem;
}

.service-info h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.service-info p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.service-price {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.btn-service {
    width: 100%;
    padding: 0.875rem;
    background: var(--accent-color);
    color: white;
    font-weight: 600;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-service:hover {
    background: #2980b9;
}

.testimonials-section {
    padding: 6rem 0;
    background: var(--bg-white);
}

.testimonials-section h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.testimonials-layout {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.testimonial-card {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 280px;
    padding: 2.5rem;
    background: var(--bg-light);
    border-radius: 8px;
    border-left: 4px solid var(--secondary-color);
}

.testimonial-text {
    font-size: 1.05rem;
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
}

.testimonial-author strong {
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}

.testimonial-author span {
    font-size: 0.9rem;
    color: var(--text-light);
}

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

.form-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.form-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.form-intro p {
    font-size: 1.1rem;
    color: var(--text-light);
}

.contact-form {
    background: white;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.form-group {
    margin-bottom: 1.75rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--primary-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 1rem;
    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);
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin-top: 0.25rem;
}

.checkbox-label span {
    font-size: 0.95rem;
    color: var(--text-light);
}

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

.btn-submit:hover {
    background: #c0392b;
    transform: translateY(-2px);
}

.cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, #1a252f 100%);
    text-align: center;
}

.cta-content h2 {
    font-size: 2.75rem;
    color: white;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.25rem;
    color: rgba(255,255,255,0.85);
    margin-bottom: 2rem;
}

.btn-cta {
    display: inline-block;
    padding: 1.25rem 3rem;
    background: var(--secondary-color);
    color: white;
    font-weight: 700;
    font-size: 1.125rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-cta:hover {
    background: white;
    color: var(--secondary-color);
    transform: scale(1.05);
}

.footer {
    background: var(--primary-color);
    color: white;
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.footer-col {
    flex: 1;
    min-width: 220px;
}

.footer-col h4 {
    margin-bottom: 1.25rem;
    font-size: 1.25rem;
}

.footer-col p {
    color: rgba(255,255,255,0.75);
    line-height: 1.6;
}

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

.footer-col ul li {
    margin-bottom: 0.75rem;
}

.footer-col ul li a {
    color: rgba(255,255,255,0.75);
    transition: color 0.3s ease;
}

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

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

.sticky-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
}

.sticky-btn {
    display: block;
    padding: 1rem 2rem;
    background: var(--secondary-color);
    color: white;
    font-weight: 700;
    border-radius: 50px;
    box-shadow: 0 5px 20px rgba(231, 76, 60, 0.4);
    transition: all 0.3s ease;
}

.sticky-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(231, 76, 60, 0.5);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-color);
    color: white;
    padding: 1.5rem;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.2);
    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;
    gap: 2rem;
    flex-wrap: wrap;
}

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

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

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

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

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

.page-hero {
    padding: 5rem 0 3rem;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    text-align: center;
}

.page-hero h1 {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.page-hero .lead {
    font-size: 1.35rem;
    color: var(--text-light);
}

.about-story {
    padding: 6rem 0;
}

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

.values-section h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.value-card {
    flex: 1 1 calc(50% - 1rem);
    min-width: 280px;
    padding: 2.5rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.value-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.value-card p {
    color: var(--text-light);
    line-height: 1.7;
}

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

.team-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.section-intro {
    text-align: center;
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

.team-layout {
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.team-member {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 280px;
    text-align: center;
}

.member-image {
    width: 200px;
    height: 200px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.team-member h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.member-role {
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.team-member p {
    color: var(--text-light);
    line-height: 1.7;
}

.process-section {
    padding: 6rem 0;
    background: var(--bg-light);
}

.process-section h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.process-step {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    padding: 2rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.step-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary-color);
    min-width: 60px;
}

.process-step h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--primary-color);
}

.process-step p {
    color: var(--text-light);
    line-height: 1.7;
}

.services-detail {
    padding: 4rem 0;
}

.service-detail-card {
    margin-bottom: 4rem;
}

.service-detail-layout {
    display: flex;
    gap: 3rem;
    align-items: center;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

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

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

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

.service-detail-content {
    flex: 1;
    padding: 3rem;
}

.service-detail-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.service-description {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.service-features h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.service-features ul {
    list-style: none;
    margin-bottom: 2rem;
}

.service-features ul li {
    padding: 0.5rem 0 0.5rem 1.75rem;
    position: relative;
    color: var(--text-light);
}

.service-features ul li:before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: 700;
}

.service-pricing {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.price-label {
    font-size: 1rem;
    color: var(--text-light);
}

.price-value {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.contact-main {
    padding: 4rem 0;
}

.contact-layout {
    display: flex;
    gap: 4rem;
}

.contact-info-side {
    flex: 1;
}

.contact-info-side h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.contact-info-side > p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
}

.contact-icon {
    font-size: 1.75rem;
    min-width: 40px;
}

.contact-text h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.contact-text p {
    color: var(--text-light);
    line-height: 1.7;
}

.contact-note {
    padding: 1.5rem;
    background: var(--bg-light);
    border-left: 4px solid var(--accent-color);
    border-radius: 4px;
    margin-top: 2rem;
}

.contact-note p {
    color: var(--text-dark);
    margin: 0;
}

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

.map-placeholder {
    position: relative;
    height: 100%;
    min-height: 500px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

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

.map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    background: rgba(44, 62, 80, 0.9);
    color: white;
}

.map-overlay p {
    margin: 0;
    font-weight: 600;
}

.contact-reasons {
    padding: 6rem 0;
    background: var(--bg-light);
}

.contact-reasons h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.reasons-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.reason-card {
    flex: 1 1 calc(50% - 1rem);
    min-width: 280px;
    padding: 2rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.reason-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.reason-card p {
    color: var(--text-light);
    line-height: 1.7;
}

.thanks-hero {
    padding: 6rem 0;
    min-height: 70vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

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

.thanks-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem;
    background: var(--success-color);
    color: white;
    font-size: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.thanks-content h1 {
    font-size: 2.75rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.thanks-lead {
    font-size: 1.35rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.thanks-info {
    padding: 1.5rem;
    background: white;
    border-radius: 8px;
    margin-bottom: 3rem;
    display: none;
}

.thanks-info p {
    margin: 0;
    font-size: 1.1rem;
    color: var(--text-dark);
}

.thanks-next-steps {
    text-align: left;
    max-width: 600px;
    margin: 3rem auto;
}

.thanks-next-steps h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
    text-align: center;
}

.steps-timeline {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.timeline-step {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.step-marker {
    min-width: 50px;
    height: 50px;
    background: var(--secondary-color);
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.step-content h3 {
    font-size: 1.35rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

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

.thanks-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.thanks-contact {
    margin-top: 3rem;
    padding: 1.5rem;
    background: white;
    border-radius: 8px;
}

.thanks-contact p {
    margin: 0;
    color: var(--text-dark);
}

.legal-content {
    padding: 4rem 0;
}

.legal-content h1 {
    font-size: 2.75rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.last-updated {
    color: var(--text-light);
    margin-bottom: 3rem;
    font-style: italic;
}

.legal-content h2 {
    font-size: 2rem;
    margin-top: 3rem;
    margin-bottom: 1.25rem;
    color: var(--primary-color);
}

.legal-content h3 {
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.legal-content h4 {
    font-size: 1.25rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--primary-color);
}

.legal-content p {
    margin-bottom: 1.25rem;
    color: var(--text-light);
    line-height: 1.8;
}

.legal-content ul {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.legal-content ul li {
    margin-bottom: 0.75rem;
    color: var(--text-light);
    line-height: 1.7;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
}

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

.cookie-table th {
    background: var(--bg-light);
    font-weight: 600;
    color: var(--primary-color);
}

.cookie-table td {
    color: var(--text-light);
}

.legal-footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    text-align: center;
}

@media (max-width: 1024px) {
    .split-hero {
        flex-direction: column;
        min-height: auto;
    }

    .split-left,
    .split-right {
        flex: none;
        width: 100%;
    }

    .hero-image {
        min-height: 400px;
    }

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

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

    .service-detail-image img {
        height: 400px;
    }

    .contact-layout {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        gap: 0;
        padding: 1rem 0;
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
        display: none;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links a {
        padding: 1rem 20px;
        width: 100%;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-stats {
        gap: 2rem;
    }

    .service-card,
    .value-card,
    .testimonial-card,
    .team-member {
        flex: 1 1 100%;
    }

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

    .sticky-cta {
        bottom: 20px;
        right: 20px;
    }

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

    .thanks-actions .btn-primary,
    .thanks-actions .btn-secondary {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .page-hero h1 {
        font-size: 2rem;
    }

    .section-header-center h2,
    .values-section h2,
    .team-section h2,
    .process-section h2 {
        font-size: 2rem;
    }
}