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

:root {
    --primary-color: #2c5282;
    --secondary-color: #48bb78;
    --accent-color: #ed8936;
    --text-dark: #1a202c;
    --text-light: #4a5568;
    --bg-light: #f7fafc;
    --bg-white: #ffffff;
    --border-color: #e2e8f0;
}

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

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

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

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

.main-nav {
    background: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    padding: 1.2rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 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: 2.5rem;
}

.nav-links a {
    font-weight: 500;
    transition: color 0.3s;
}

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

.cookie-banner.hidden {
    display: none;
}

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

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

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

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

.btn-accept:hover {
    background: #38a169;
}

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

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

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

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

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

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

.hero-split h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

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

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

.cta-primary:hover {
    background: #1e3a5f;
    transform: translateY(-2px);
}

.cta-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--accent-color);
    color: var(--bg-white);
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s;
}

.cta-secondary:hover {
    background: #dd6b20;
    transform: translateY(-2px);
}

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

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

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

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

.info-content {
    flex: 1;
    padding: 5rem 3rem;
    background: var(--bg-light);
}

.info-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

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

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

.benefit-list li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1.05rem;
}

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

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

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

.trust-section h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.intro-text {
    font-size: 1.15rem;
    color: var(--text-light);
    line-height: 1.8;
    text-align: center;
}

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

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

.services-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.services-intro p {
    font-size: 1.15rem;
    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);
    padding: 2.5rem 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
    position: relative;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.service-card.featured {
    border: 2px solid var(--secondary-color);
}

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

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

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

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

.select-service {
    padding: 0.9rem 2rem;
    background: var(--primary-color);
    color: var(--bg-white);
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.select-service:hover {
    background: #1e3a5f;
}

.select-service.selected {
    background: var(--secondary-color);
}

.testimonial-split {
    display: flex;
    background: var(--bg-white);
}

.testimonial-left,
.testimonial-right {
    flex: 1;
    padding: 4rem 3rem;
}

.testimonial-left {
    background: var(--bg-light);
}

blockquote {
    font-size: 1.2rem;
    line-height: 1.7;
    font-style: italic;
    color: var(--text-dark);
}

cite {
    display: block;
    margin-top: 1.5rem;
    font-size: 1rem;
    font-style: normal;
    font-weight: 600;
    color: var(--text-light);
}

.cta-split {
    padding: 4rem 2rem;
    background: var(--primary-color);
    text-align: center;
}

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

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

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

.form-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    background: var(--bg-white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.form-left,
.form-right {
    flex: 1;
    padding: 3rem;
}

.form-left {
    background: var(--bg-light);
}

.form-left h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.selected-service-display {
    margin-top: 2rem;
    padding: 1.5rem;
    background: var(--bg-white);
    border-radius: 6px;
    border-left: 4px solid var(--secondary-color);
}

.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 textarea {
    width: 100%;
    padding: 0.9rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
}

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

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

.btn-submit:hover {
    background: #38a169;
}

.btn-submit:disabled {
    background: #cbd5e0;
    cursor: not-allowed;
}

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

.process-content {
    max-width: 700px;
    margin: 0 auto 3rem;
    text-align: center;
}

.process-content h2 {
    font-size: 2.5rem;
}

.process-steps {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
}

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

.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.3rem;
    margin-bottom: 1rem;
}

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

.final-cta-split {
    display: flex;
    align-items: center;
    background: var(--bg-light);
}

.final-left,
.final-right {
    flex: 1;
    padding: 4rem 3rem;
}

.final-left h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

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

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

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

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

.footer-section {
    flex: 1;
}

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

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

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

.footer-section ul li {
    margin-bottom: 0.6rem;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s;
}

.footer-section 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);
}

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

.page-hero-split .hero-left {
    flex: 1;
    padding: 4rem 3rem;
}

.page-hero-split .hero-right {
    flex: 1;
}

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

.story-split,
.values-split,
.mission-split {
    display: flex;
    align-items: center;
}

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

.story-content,
.values-content,
.mission-left {
    flex: 1;
    padding: 4rem 3rem;
}

.story-image,
.values-image,
.mission-right {
    flex: 1;
    overflow: hidden;
}

.story-image img,
.values-image img,
.mission-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.story-content h2,
.values-content h2,
.mission-left h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

.story-content p,
.values-content p,
.mission-left p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.value-item {
    margin-bottom: 2rem;
}

.value-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

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

.team-intro {
    max-width: 700px;
    margin: 0 auto 3rem;
    text-align: center;
}

.team-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.team-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
}

.team-member {
    flex: 1;
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 8px;
}

.team-member h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

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

.stats-split {
    display: flex;
    background: var(--primary-color);
    color: var(--bg-white);
}

.stat-item {
    flex: 1;
    padding: 4rem 2rem;
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

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

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

.cta-about h2,
.cta-services h2,
.cta-contact h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

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

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

.service-detail-card {
    max-width: 1200px;
    margin: 0 auto 4rem;
}

.service-split {
    display: flex;
    align-items: center;
    gap: 3rem;
}

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

.service-info {
    flex: 1.2;
    padding: 2rem;
}

.service-visual {
    flex: 0.8;
    overflow: hidden;
    border-radius: 8px;
}

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

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

.service-info h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.included-list {
    list-style: none;
    margin-bottom: 2rem;
}

.included-list li {
    padding: 0.6rem 0;
    padding-left: 2rem;
    position: relative;
}

.included-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

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

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

.comparison-section h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 3rem;
}

.comparison-split {
    max-width: 1100px;
    margin: 0 auto 2rem;
    display: flex;
    gap: 2rem;
}

.comparison-col {
    flex: 1;
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 8px;
}

.comparison-col h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.guarantee-split {
    display: flex;
    align-items: center;
    background: var(--bg-white);
}

.guarantee-left {
    flex: 1;
    padding: 4rem 3rem;
}

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

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

.guarantee-left h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

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

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

.contact-info {
    flex: 1;
    padding: 4rem 3rem;
    background: var(--bg-light);
}

.contact-visual {
    flex: 1;
    overflow: hidden;
}

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

.contact-item {
    margin-bottom: 2.5rem;
}

.contact-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--primary-color);
}

.contact-item p {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.7;
}

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

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

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

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

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

.location-content {
    flex: 1;
    padding: 4rem 3rem;
}

.location-content h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.location-content p {
    font-size: 1.05rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.location-content h3 {
    font-size: 1.2rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.transport-list {
    list-style: none;
    margin-bottom: 2rem;
}

.transport-list li {
    padding: 0.5rem 0;
    color: var(--text-light);
}

.note {
    font-size: 0.95rem;
    font-style: italic;
    color: var(--text-light);
    padding: 1rem;
    background: var(--bg-light);
    border-radius: 4px;
    margin-top: 1.5rem;
}

.faq-contact {
    padding: 4rem 2rem;
    background: var(--bg-white);
}

.faq-contact h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 3rem;
}

.faq-split {
    max-width: 1100px;
    margin: 0 auto 2rem;
    display: flex;
    gap: 2rem;
}

.faq-item {
    flex: 1;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 8px;
}

.faq-item h3 {
    font-size: 1.15rem;
    margin-bottom: 0.8rem;
}

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

.thanks-hero {
    padding: 5rem 2rem;
    background: var(--bg-light);
    text-align: center;
}

.thanks-container {
    max-width: 700px;
    margin: 0 auto;
}

.thanks-icon {
    margin: 0 auto 2rem;
    width: 80px;
}

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

.thanks-lead {
    font-size: 1.2rem;
    color: var(--text-light);
}

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

.thanks-left {
    flex: 1;
    padding: 4rem 3rem;
}

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

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

.thanks-left h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
}

.timeline-step {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.step-marker {
    width: 50px;
    height: 50px;
    background: 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;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

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

.selected-service-info {
    padding: 3rem 2rem;
    background: var(--bg-white);
    text-align: center;
}

.selected-service-info h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.service-box {
    max-width: 600px;
    margin: 0 auto;
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 8px;
    border-left: 4px solid var(--secondary-color);
}

.service-box p {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
}

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

.tips-content {
    flex: 1;
    padding: 4rem 3rem;
}

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

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

.tips-content h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.tips-content p {
    font-size: 1.05rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.preparation-list {
    list-style: none;
    margin-bottom: 2rem;
}

.preparation-list li {
    padding: 0.7rem 0;
    padding-left: 2rem;
    position: relative;
}

.preparation-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-size: 1.5rem;
}

.note-text {
    font-size: 0.95rem;
    color: var(--text-light);
    font-style: italic;
    padding: 1rem;
    background: var(--bg-light);
    border-radius: 4px;
}

.contact-reminder {
    padding: 3rem 2rem;
    background: var(--bg-light);
    text-align: center;
}

.contact-reminder h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.contact-reminder a {
    font-weight: 600;
    font-size: 1.1rem;
}

.thanks-cta {
    padding: 3rem 2rem;
    text-align: center;
    background: var(--bg-white);
}

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

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

.legal-container h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

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

.legal-container h2 {
    font-size: 1.8rem;
    margin-top: 3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.legal-container h3 {
    font-size: 1.3rem;
    margin-top: 2rem;
    margin-bottom: 0.8rem;
}

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

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

.legal-container ul li {
    color: var(--text-light);
    margin-bottom: 0.5rem;
    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;
}

@media (max-width: 968px) {
    .hero-split,
    .info-split,
    .testimonial-split,
    .form-container,
    .process-steps,
    .final-cta-split,
    .story-split,
    .values-split,
    .team-grid,
    .stats-split,
    .mission-split,
    .service-split,
    .comparison-split,
    .guarantee-split,
    .contact-split,
    .location-split,
    .faq-split,
    .thanks-info-split,
    .tips-split,
    .page-hero-split {
        flex-direction: column;
    }

    .info-split.reverse,
    .values-split.reverse,
    .mission-split.reverse,
    .location-split.reverse,
    .service-detail-card.reverse .service-split {
        flex-direction: column;
    }

    .nav-links {
        gap: 1.5rem;
        font-size: 0.9rem;
    }

    .hero-split h1 {
        font-size: 2.2rem;
    }

    .hero-text {
        font-size: 1.1rem;
    }

    .hero-right {
        min-height: 300px;
    }

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

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

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

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

@media (max-width: 640px) {
    .nav-links {
        display: none;
    }

    .hero-split h1 {
        font-size: 1.8rem;
    }

    .hero-left,
    .info-content,
    .form-left,
    .form-right,
    .testimonial-left,
    .testimonial-right,
    .process-content,
    .final-left,
    .final-right,
    .story-content,
    .values-content,
    .mission-left,
    .contact-info,
    .location-content,
    .tips-content,
    .thanks-left {
        padding: 2rem 1.5rem;
    }

    .services-split,
    .form-section,
    .process-split {
        padding: 3rem 1rem;
    }
}