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

:root {
    --primary-color: #2563eb;
    --primary-dark: #1e40af;
    --secondary-color: #10b981;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --bg-light: #f9fafb;
    --bg-white: #ffffff;
    --border-color: #e5e7eb;
    --success-color: #059669;
    --error-color: #dc2626;
}

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

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

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

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

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

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

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

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

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    border-radius: 3px;
    transition: all 0.3s ease;
}

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

.hero-left,
.hero-right {
    flex: 1;
}

.hero-left {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: var(--bg-white);
}

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

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.hero-right {
    position: relative;
    overflow: hidden;
}

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

.cta-primary,
.cta-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.cta-primary {
    background: var(--bg-white);
    color: var(--primary-color);
}

.cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

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

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

.intro-split {
    display: flex;
    align-items: center;
}

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

.split-content,
.split-image {
    flex: 1;
}

.split-content {
    padding: 4rem 3rem;
    background: var(--bg-light);
}

.split-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.split-content p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.8;
}

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

.services-highlight {
    padding: 5rem 2rem;
    background: var(--bg-white);
}

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

.section-header h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

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

.services-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.service-card {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 280px;
    background: var(--bg-white);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
}

.service-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.service-card.featured {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, #667eea15 0%, #764ba215 100%);
}

.featured-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--primary-color);
    color: var(--bg-white);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.service-icon {
    width: 60px;
    height: 60px;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

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

.price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.btn-select-service {
    width: 100%;
    padding: 0.9rem;
    background: var(--primary-color);
    color: var(--bg-white);
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.testimonial-split {
    display: flex;
}

.testimonial-content,
.testimonial-image {
    flex: 1;
}

.testimonial-content {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 3rem;
    background: var(--primary-color);
    color: var(--bg-white);
}

.testimonial-content blockquote {
    max-width: 600px;
}

.testimonial-content p {
    font-size: 1.5rem;
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.testimonial-content cite {
    font-size: 1.1rem;
    font-style: normal;
    opacity: 0.9;
}

.testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 400px;
}

.benefits-section {
    padding: 4rem 2rem;
    background: var(--bg-light);
}

.benefits-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
}

.benefit-item {
    flex: 1;
    text-align: center;
}

.benefit-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

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

.cta-split-section {
    display: flex;
    min-height: 600px;
}

.cta-split-left,
.cta-split-right {
    flex: 1;
}

.cta-split-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem 3rem;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: var(--bg-white);
}

.cta-split-left h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

.cta-split-left p {
    font-size: 1.2rem;
    opacity: 0.95;
}

.cta-split-right {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 3rem;
    background: var(--bg-white);
}

.contact-form {
    width: 100%;
    max-width: 500px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    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(--primary-color);
}

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

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

.why-us-split {
    display: flex;
}

.why-image,
.why-content {
    flex: 1;
}

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

.why-content {
    padding: 4rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.why-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.why-content p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.link-arrow {
    display: inline-block;
    margin-top: 1rem;
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.link-arrow:hover {
    transform: translateX(5px);
}

.link-arrow::after {
    content: ' →';
}

.final-cta {
    padding: 5rem 2rem;
    background: var(--text-dark);
    color: var(--bg-white);
    text-align: center;
}

.final-cta-content h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

.final-cta-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.main-footer {
    background: var(--text-dark);
    color: var(--bg-white);
    padding: 3rem 2rem 1rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-col {
    flex: 1;
}

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

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

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

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

.footer-col a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

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

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

.sticky-cta-btn {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--secondary-color);
    color: var(--bg-white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.sticky-cta-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--text-dark);
    color: var(--bg-white);
    padding: 1.5rem 2rem;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    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;
}

.cookie-content p {
    margin: 0;
    flex: 1;
}

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

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

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

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

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

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

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

.page-hero {
    padding: 5rem 2rem 3rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: var(--bg-white);
    text-align: center;
}

.page-hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-hero-content p {
    font-size: 1.3rem;
    opacity: 0.95;
}

.about-split {
    display: flex;
    align-items: center;
    padding: 4rem 0;
}

.about-content,
.about-image {
    flex: 1;
}

.about-content {
    padding: 2rem 3rem;
}

.about-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.about-content p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 400px;
}

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

.values-section h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 3rem;
    color: var(--text-dark);
}

.values-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.value-card {
    flex: 1 1 calc(50% - 2rem);
    min-width: 280px;
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

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

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

.team-split {
    display: flex;
    align-items: center;
}

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

.team-image,
.team-content {
    flex: 1;
}

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

.team-content {
    padding: 3rem;
}

.team-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.team-content p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.philosophy-section {
    padding: 5rem 2rem;
    background: var(--bg-white);
}

.philosophy-container {
    max-width: 1000px;
    margin: 0 auto;
}

.philosophy-container h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    text-align: center;
}

.philosophy-lead {
    font-size: 1.3rem;
    color: var(--text-light);
    text-align: center;
    margin-bottom: 3rem;
}

.philosophy-points {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.point h4 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.point p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.7;
}

.journey-cta {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: var(--bg-white);
    text-align: center;
}

.journey-content h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

.journey-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.services-detail {
    max-width: 1400px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.service-detail-item {
    display: flex;
    align-items: center;
    margin-bottom: 5rem;
    gap: 3rem;
}

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

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

.service-detail-content {
    padding: 2rem;
}

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

.service-intro {
    font-size: 1.3rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.service-detail-content p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.service-features {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin: 2rem 0;
}

.feature {
    background: var(--bg-light);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.95rem;
    color: var(--text-dark);
}

.price-large {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 1.5rem 0;
}

.badge-popular {
    display: inline-block;
    background: var(--secondary-color);
    color: var(--bg-white);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.service-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    min-height: 400px;
}

.services-cta {
    padding: 4rem 2rem;
    background: var(--bg-light);
    text-align: center;
}

.services-cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.services-cta-content p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.form-section {
    padding: 5rem 2rem;
    background: var(--bg-white);
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.form-container h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.form-container p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.contact-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
    gap: 4rem;
}

.contact-info,
.contact-map {
    flex: 1;
}

.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.info-block {
    margin-bottom: 2.5rem;
}

.info-block h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: var(--primary-color);
}

.info-block p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
}

.info-block a {
    color: var(--primary-color);
    text-decoration: none;
}

.info-block a:hover {
    text-decoration: underline;
}

.map-placeholder img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.contact-cta-section {
    padding: 4rem 2rem;
    background: var(--bg-light);
    text-align: center;
}

.contact-cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.contact-cta-content p {
    font-size: 1.2rem;
    color: var(--text-light);
}

.thanks-hero {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: var(--bg-white);
    text-align: center;
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

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

.success-icon svg {
    width: 50px;
    height: 50px;
}

.thanks-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.thanks-message {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    opacity: 0.95;
}

.service-info {
    font-size: 1.2rem;
    opacity: 0.9;
    font-weight: 600;
}

.next-steps {
    padding: 5rem 2rem;
    background: var(--bg-white);
}

.next-steps-container {
    max-width: 1200px;
    margin: 0 auto;
}

.next-steps-container h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 3rem;
    color: var(--text-dark);
}

.steps-grid {
    display: flex;
    gap: 3rem;
}

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

.step-number {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

.step h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

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

.thanks-cta {
    padding: 4rem 2rem;
    background: var(--bg-light);
}

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

.thanks-cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.cta-links {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-link {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--bg-white);
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    border: 2px solid var(--primary-color);
    transition: all 0.3s ease;
}

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

.legal-page {
    padding: 3rem 2rem;
    background: var(--bg-white);
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
}

.legal-container h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

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

.legal-container h2 {
    font-size: 2rem;
    margin: 2.5rem 0 1rem;
    color: var(--text-dark);
}

.legal-container h3 {
    font-size: 1.5rem;
    margin: 2rem 0 1rem;
    color: var(--text-dark);
}

.legal-container h4 {
    font-size: 1.2rem;
    margin: 1.5rem 0 0.5rem;
    color: var(--primary-color);
}

.legal-container p {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.legal-container ul {
    margin: 1rem 0 1.5rem 2rem;
}

.legal-container li {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.legal-container a {
    color: var(--primary-color);
    text-decoration: underline;
}

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

@media (max-width: 968px) {
    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--bg-white);
        flex-direction: column;
        gap: 0;
        padding: 0;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        display: none;
    }

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

    .nav-links li {
        border-bottom: 1px solid var(--border-color);
    }

    .nav-links a {
        display: block;
        padding: 1rem 2rem;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-split,
    .intro-split,
    .testimonial-split,
    .cta-split-section,
    .why-us-split,
    .about-split,
    .team-split,
    .service-detail-item,
    .contact-split {
        flex-direction: column;
    }

    .intro-split.reverse,
    .team-split.reverse,
    .service-detail-item.reverse {
        flex-direction: column;
    }

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

    .benefits-container,
    .steps-grid {
        flex-direction: column;
    }

    .footer-container {
        flex-direction: column;
        gap: 2rem;
    }

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

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

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

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

    .section-header h2,
    .page-hero-content h1 {
        font-size: 2rem;
    }

    .split-content h2,
    .why-content h2 {
        font-size: 1.8rem;
    }

    .sticky-cta {
        bottom: 10px;
        right: 10px;
        left: 10px;
    }

    .sticky-cta-btn {
        display: block;
        text-align: center;
    }

    .values-grid,
    .cta-links {
        flex-direction: column;
    }

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