:root {
    --primary-color: #1a5f7a;
    --secondary-color: #2d8ba8;
    --accent-color: #57a0b5;
    --text-dark: #1a1a1a;
    --text-medium: #4a4a4a;
    --text-light: #707070;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --success-color: #4CAF50;
    --font-main: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

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

body {
    font-family: var(--font-main);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
}

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

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

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

.main-header {
    background-color: var(--bg-white);
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.2rem 2rem;
}

.brand-area .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: -0.5px;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 3rem;
}

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

.main-nav a {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-medium);
}

.ad-notice {
    font-size: 0.75rem;
    color: var(--text-light);
    background-color: var(--bg-light);
    padding: 0.4rem 0.8rem;
    border-radius: 4px;
}

.hero-split {
    display: flex;
    min-height: 85vh;
    align-items: center;
}

.hero-left {
    flex: 1;
    padding: 4rem 2rem 4rem 6rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

.hero-right img {
    width: 100%;
    height: 100%;
    min-height: 600px;
}

.hero-left h1 {
    font-size: 3.2rem;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    font-weight: 800;
}

.hero-left p {
    font-size: 1.2rem;
    line-height: 1.7;
    color: var(--text-medium);
    margin-bottom: 2rem;
    max-width: 580px;
}

.cta-primary {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 6px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    align-self: flex-start;
}

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

.intro-split {
    display: flex;
    align-items: center;
    max-width: 1400px;
    margin: 6rem auto;
    padding: 0 2rem;
    gap: 4rem;
}

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

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

.split-image img {
    width: 100%;
    height: 100%;
    min-height: 400px;
}

.split-content {
    flex: 1;
    padding: 2rem;
}

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

.split-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-medium);
    margin-bottom: 1.2rem;
}

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

.services-intro {
    max-width: 1000px;
    margin: 0 auto 4rem;
    text-align: center;
}

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

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

.service-item {
    max-width: 1200px;
    margin: 0 auto 3rem;
    background-color: var(--bg-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

.split-service {
    display: flex;
    align-items: stretch;
}

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

.service-info {
    flex: 1.2;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

.service-visual img {
    width: 100%;
    height: 100%;
    min-height: 350px;
}

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

.service-info p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-medium);
    margin-bottom: 1.5rem;
}

.service-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.service-price {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-color);
}

.btn-select-service {
    background-color: var(--accent-color);
    color: var(--bg-white);
    padding: 0.8rem 1.8rem;
    border: none;
    border-radius: 6px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

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

.testimonials-split {
    display: flex;
    max-width: 1400px;
    margin: 6rem auto;
    padding: 0 2rem;
    gap: 4rem;
    align-items: center;
}

.testimonials-content {
    flex: 1.2;
}

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

.testimonial-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.testimonial-card {
    background-color: var(--bg-light);
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.testimonial-card p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-medium);
    margin-bottom: 1rem;
    font-style: italic;
}

.testimonial-card cite {
    font-style: normal;
    font-weight: 600;
    color: var(--text-dark);
}

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

.testimonials-image img {
    width: 100%;
    height: 100%;
    min-height: 450px;
}

.cta-split {
    display: flex;
    background-color: var(--primary-color);
    max-width: 1400px;
    margin: 6rem auto;
    border-radius: 12px;
    overflow: hidden;
    padding: 4rem;
    align-items: center;
    gap: 3rem;
}

.cta-content {
    flex: 1.5;
}

.cta-content h2 {
    font-size: 2.2rem;
    color: var(--bg-white);
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.9);
}

.cta-actions {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.cta-button {
    display: inline-block;
    background-color: var(--bg-white);
    color: var(--primary-color);
    padding: 1.1rem 2.5rem;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 6px;
    transition: transform 0.2s ease, box-shadow 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    color: var(--primary-color);
}

.form-split {
    display: flex;
    max-width: 1200px;
    margin: 6rem auto;
    padding: 0 2rem;
    gap: 4rem;
    align-items: flex-start;
}

.form-intro {
    flex: 1;
}

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

.form-intro p {
    font-size: 1.05rem;
    color: var(--text-medium);
    line-height: 1.7;
}

.form-container {
    flex: 1.2;
    background-color: var(--bg-light);
    padding: 3rem;
    border-radius: 8px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.9rem;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 1rem;
    font-family: var(--font-main);
    background-color: var(--bg-white);
    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 {
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 1rem 2rem;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    align-self: flex-start;
}

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

.disclaimer-section {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 3rem 2rem;
    background-color: var(--bg-light);
}

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

.disclaimer-text {
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--text-light);
    font-style: italic;
}

.main-footer {
    background-color: var(--text-dark);
    color: var(--bg-white);
    padding: 4rem 2rem 2rem;
    margin-top: 6rem;
}

.footer-split {
    display: flex;
    max-width: 1200px;
    margin: 0 auto 3rem;
    gap: 3rem;
    justify-content: space-between;
}

.footer-col {
    flex: 1;
}

.footer-col h4 {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    color: var(--bg-white);
}

.footer-col p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: rgba(255,255,255,0.7);
}

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

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

.footer-col ul li a {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
    transition: color 0.3s ease;
}

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

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

.footer-bottom p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--text-dark);
    color: var(--bg-white);
    padding: 1.5rem 2rem;
    z-index: 200;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.15);
    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 {
    flex: 1;
    font-size: 0.95rem;
    line-height: 1.6;
}

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

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

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

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

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

.btn-accept:hover,
.btn-reject:hover {
    opacity: 0.85;
}

.page-hero-split {
    display: flex;
    min-height: 50vh;
    align-items: center;
    background-color: var(--bg-light);
}

.hero-content {
    flex: 1;
    padding: 4rem 6rem;
}

.hero-content h1 {
    font-size: 2.8rem;
    margin-bottom: 1.2rem;
    color: var(--text-dark);
}

.hero-content p {
    font-size: 1.15rem;
    line-height: 1.7;
    color: var(--text-medium);
    max-width: 600px;
}

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

.hero-visual img {
    width: 100%;
    height: 100%;
    min-height: 450px;
}

.story-split {
    display: flex;
    max-width: 1200px;
    margin: 6rem auto;
    padding: 0 2rem;
    gap: 4rem;
    align-items: center;
}

.story-text {
    flex: 1.2;
}

.story-text h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.story-text p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-medium);
    margin-bottom: 1.2rem;
}

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

.story-image img {
    width: 100%;
    height: 100%;
    min-height: 400px;
}

.values-split {
    display: flex;
    max-width: 1200px;
    margin: 6rem auto;
    padding: 0 2rem;
    gap: 4rem;
    align-items: center;
}

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

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

.values-image img {
    width: 100%;
    height: 100%;
    min-height: 400px;
}

.values-text {
    flex: 1.2;
}

.values-text h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

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

.values-list li {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-medium);
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
    position: relative;
}

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

.values-list li strong {
    color: var(--text-dark);
}

.team-section {
    max-width: 1200px;
    margin: 6rem auto;
    padding: 0 2rem;
}

.team-section h2 {
    font-size: 2.6rem;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.team-intro {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-medium);
    margin-bottom: 4rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.team-grid {
    display: flex;
    gap: 3rem;
    justify-content: center;
    flex-wrap: wrap;
}

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

.team-member img {
    width: 100%;
    height: auto;
    aspect-ratio: 1;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    background-color: var(--bg-light);
}

.team-member h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.team-member .role {
    font-size: 0.95rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 0.8rem;
}

.team-member p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-medium);
}

.approach-split {
    display: flex;
    max-width: 1200px;
    margin: 6rem auto;
    padding: 0 2rem;
    gap: 4rem;
    align-items: center;
}

.approach-content {
    flex: 1.2;
}

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

.approach-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-medium);
    margin-bottom: 1.2rem;
}

.approach-visual {
    flex: 1;
    background-color: var(--bg-light);
}

.approach-visual img {
    width: 100%;
    height: 100%;
    min-height: 400px;
}

.cta-about {
    max-width: 1200px;
    margin: 6rem auto;
    padding: 4rem 2rem;
    text-align: center;
    background-color: var(--bg-light);
    border-radius: 8px;
}

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

.services-detailed {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 0 2rem;
}

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

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

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

.service-content ul {
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.service-content ul li {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-medium);
    margin-bottom: 0.7rem;
}

.service-pricing {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

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

.process-section {
    max-width: 1200px;
    margin: 6rem auto;
    padding: 4rem 2rem;
    background-color: var(--bg-light);
    border-radius: 8px;
}

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

.process-steps {
    display: flex;
    gap: 2rem;
    justify-content: space-between;
}

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

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

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

.step p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-medium);
}

.cta-services {
    max-width: 1200px;
    margin: 6rem auto;
    padding: 4rem 2rem;
    text-align: center;
    background-color: var(--primary-color);
    border-radius: 8px;
    color: var(--bg-white);
}

.cta-services h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: var(--bg-white);
}

.cta-services p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: rgba(255,255,255,0.9);
}

.contact-hero-split {
    display: flex;
    min-height: 45vh;
    align-items: center;
    background-color: var(--bg-light);
}

.contact-intro {
    flex: 1;
    padding: 4rem 6rem;
}

.contact-intro h1 {
    font-size: 2.8rem;
    margin-bottom: 1.2rem;
    color: var(--text-dark);
}

.contact-intro p {
    font-size: 1.15rem;
    line-height: 1.7;
    color: var(--text-medium);
    max-width: 600px;
}

.contact-visual {
    flex: 1;
    background-color: var(--bg-light);
}

.contact-visual img {
    width: 100%;
    height: 100%;
    min-height: 400px;
}

.contact-details-split {
    display: flex;
    max-width: 1200px;
    margin: 6rem auto;
    padding: 0 2rem;
    gap: 4rem;
    align-items: flex-start;
}

.contact-info {
    flex: 1;
}

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

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

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

.info-block p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-medium);
}

.contact-map {
    flex: 1;
    background-color: var(--bg-light);
}

.map-placeholder {
    width: 100%;
    height: 100%;
    min-height: 450px;
}

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

.contact-cta-section {
    max-width: 1200px;
    margin: 6rem auto;
    padding: 4rem 2rem;
    text-align: center;
    background-color: var(--bg-light);
    border-radius: 8px;
}

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

.contact-cta-section p {
    font-size: 1.05rem;
    margin-bottom: 2rem;
    color: var(--text-medium);
}

.thanks-section {
    display: flex;
    max-width: 1200px;
    margin: 6rem auto;
    padding: 0 2rem;
    gap: 4rem;
    align-items: center;
}

.thanks-content {
    flex: 1.5;
}

.success-icon {
    margin-bottom: 2rem;
}

.thanks-content h1 {
    font-size: 2.6rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.thanks-message {
    font-size: 1.15rem;
    line-height: 1.7;
    color: var(--text-medium);
    margin-bottom: 2rem;
}

.service-confirmation {
    background-color: var(--bg-light);
    padding: 1.5rem;
    border-radius: 6px;
    margin-bottom: 2rem;
    font-size: 1rem;
    color: var(--text-dark);
}

.next-steps {
    margin-bottom: 3rem;
}

.next-steps h2 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.next-steps ul {
    margin-left: 1.5rem;
}

.next-steps ul li {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-medium);
    margin-bottom: 0.7rem;
}

.thanks-actions {
    display: flex;
    gap: 1.5rem;
}

.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 6px;
    font-size: 0.95rem;
    font-weight: 600;
    transition: transform 0.2s ease;
}

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

.btn-secondary {
    background-color: var(--bg-light);
    color: var(--text-dark);
}

.btn-primary:hover,
.btn-secondary:hover {
    transform: translateY(-2px);
}

.thanks-visual {
    flex: 1;
    background-color: var(--bg-light);
}

.thanks-visual img {
    width: 100%;
    height: 100%;
    min-height: 400px;
}

.legal-page {
    max-width: 900px;
    margin: 4rem auto;
    padding: 0 2rem;
}

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

.updated {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

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

.legal-content h3 {
    font-size: 1.3rem;
    margin: 1.5rem 0 0.8rem;
    color: var(--text-dark);
}

.legal-content p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-medium);
    margin-bottom: 1.2rem;
}

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

.legal-content ul li {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-medium);
    margin-bottom: 0.7rem;
}

.legal-content strong {
    color: var(--text-dark);
    font-weight: 600;
}

.no-link {
    color: var(--text-medium);
    cursor: text;
}

@media (max-width: 968px) {
    .hero-split,
    .intro-split,
    .split-service,
    .testimonials-split,
    .form-split,
    .story-split,
    .values-split,
    .approach-split,
    .contact-details-split,
    .thanks-section {
        flex-direction: column;
    }

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

    .hero-left,
    .hero-content,
    .contact-intro {
        padding: 3rem 2rem;
    }

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

    .cta-split {
        flex-direction: column;
        text-align: center;
    }

    .cta-actions {
        justify-content: center;
    }

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

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

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

    .team-member {
        flex: 1 1 100%;
    }

    .main-nav {
        flex-direction: column;
        gap: 1rem;
    }

    .main-nav ul {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

    .header-split {
        flex-direction: column;
        gap: 1.5rem;
    }
}