/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #fff;
}

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

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* Header - Split Screen Navigation */
.header-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2c3e50;
}

.nav-main {
    display: flex;
    gap: 2.5rem;
}

.nav-link {
    font-size: 0.95rem;
    color: #555;
    transition: color 0.3s;
    font-weight: 500;
}

.nav-link:hover,
.nav-link.active {
    color: #e74c3c;
}

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

.hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    transition: 0.3s;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0,0,0,0.95);
    color: #fff;
    padding: 1.5rem 5%;
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.cookie-banner:not(.hidden) {
    transform: translateY(0);
}

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

.cookie-content p {
    flex: 1;
    min-width: 300px;
}

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

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

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

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

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

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

/* Hero Split Section */
.hero-split {
    display: flex;
    min-height: 90vh;
    align-items: center;
}

.hero-content {
    flex: 1;
    padding: 4rem 5%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1.5rem;
}

.hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    color: #2c3e50;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.8;
    max-width: 550px;
}

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

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

/* CTA Buttons */
.cta-primary,
.cta-secondary,
.cta-large {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-weight: 600;
    border-radius: 5px;
    transition: 0.3s;
    cursor: pointer;
}

.cta-primary {
    background: #e74c3c;
    color: #fff;
}

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

.cta-secondary {
    background: transparent;
    color: #e74c3c;
    border: 2px solid #e74c3c;
}

.cta-secondary:hover {
    background: #e74c3c;
    color: #fff;
}

.cta-large {
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
    background: #2c3e50;
    color: #fff;
}

.cta-large:hover {
    background: #1a252f;
}

/* Intro Split (Reverse) */
.intro-split {
    display: flex;
    padding: 5rem 5%;
    align-items: center;
    gap: 4rem;
}

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

.intro-image {
    flex: 1;
}

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

.intro-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.intro-content h2 {
    font-size: 2.5rem;
    color: #2c3e50;
}

.intro-content p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.8;
}

.link-arrow {
    color: #e74c3c;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

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

.link-arrow:hover {
    gap: 0.8rem;
}

/* Values Cards Section */
.values-cards {
    padding: 5rem 5%;
    background: #f8f9fa;
}

.values-header {
    text-align: center;
    margin-bottom: 3rem;
}

.values-header h2 {
    font-size: 2.5rem;
    color: #2c3e50;
}

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

.value-card {
    flex: 1;
    min-width: 250px;
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: 0.3s;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}

.card-icon {
    font-size: 2.5rem;
}

.value-card h3 {
    font-size: 1.3rem;
    color: #2c3e50;
}

.value-card p {
    color: #666;
    line-height: 1.6;
}

/* Services Showcase Split */
.services-showcase-split {
    display: flex;
    padding: 5rem 5%;
    gap: 4rem;
    align-items: center;
}

.showcase-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.showcase-content h2 {
    font-size: 2.5rem;
    color: #2c3e50;
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.services-list li {
    padding-left: 1.5rem;
    position: relative;
    color: #555;
    font-size: 1.05rem;
}

.services-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: 700;
}

.showcase-image {
    flex: 1;
}

.showcase-image img {
    border-radius: 8px;
}

/* Testimonials Section */
.testimonials-section {
    padding: 5rem 5%;
    background: #2c3e50;
    color: #fff;
}

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

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

.testimonial-card {
    flex: 1;
    min-width: 280px;
    background: rgba(255,255,255,0.1);
    padding: 2rem;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.testimonial-text {
    font-style: italic;
    line-height: 1.7;
    font-size: 1.05rem;
}

.testimonial-author {
    font-weight: 600;
    color: #ecf0f1;
}

/* CTA Split Section with Form */
.cta-split-section {
    display: flex;
    min-height: 80vh;
}

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

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

.cta-form-area {
    flex: 1;
    padding: 4rem 5%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1.5rem;
    background: #f8f9fa;
}

.cta-form-area h2 {
    font-size: 2.5rem;
    color: #2c3e50;
}

/* Form Styles */
.service-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 500px;
}

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

.form-group label {
    font-weight: 600;
    color: #2c3e50;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.9rem;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    font-family: inherit;
    transition: 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #e74c3c;
}

.btn-submit {
    padding: 1rem 2rem;
    background: #e74c3c;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    font-size: 1.05rem;
    cursor: pointer;
    transition: 0.3s;
}

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

/* Final CTA */
.final-cta {
    padding: 5rem 5%;
    text-align: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
}

.final-cta-content {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.final-cta h2 {
    font-size: 2.8rem;
}

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

/* Footer */
.footer {
    background: #1a252f;
    color: #ecf0f1;
    padding: 3rem 5% 1.5rem;
}

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

.footer-column {
    flex: 1;
    min-width: 200px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-column h4 {
    font-size: 1.2rem;
    color: #fff;
}

.footer-column a {
    color: #bdc3c7;
    transition: 0.3s;
    display: block;
}

.footer-column a:hover {
    color: #e74c3c;
}

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

/* Page Hero Simple */
.page-hero-simple {
    padding: 4rem 5%;
    text-align: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
}

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

.page-hero-simple p {
    font-size: 1.2rem;
    opacity: 0.95;
}

/* Page Hero Split */
.page-hero-split {
    display: flex;
    min-height: 60vh;
    align-items: center;
}

.page-hero-content {
    flex: 1;
    padding: 4rem 5%;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.page-hero-content h1 {
    font-size: 3rem;
    color: #2c3e50;
}

.page-hero-image {
    flex: 1;
    overflow: hidden;
}

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

/* Story Split */
.story-split {
    display: flex;
    padding: 5rem 5%;
    gap: 4rem;
    align-items: center;
}

.story-image {
    flex: 1;
}

.story-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.story-content h2 {
    font-size: 2.5rem;
    color: #2c3e50;
}

/* Mission Vision */
.mission-vision {
    display: flex;
    padding: 5rem 5%;
    gap: 3rem;
    background: #f8f9fa;
}

.mission-box,
.vision-box {
    flex: 1;
    padding: 3rem;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.mission-box h3,
.vision-box h3 {
    font-size: 1.8rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

/* Team Section */
.team-section {
    padding: 5rem 5%;
    text-align: center;
}

.team-section h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.team-intro {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 3rem;
}

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

.team-member {
    flex: 1;
    min-width: 250px;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.member-image {
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 50%;
    margin-bottom: 1rem;
}

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

.member-title {
    color: #e74c3c;
    font-weight: 600;
}

.member-desc {
    color: #666;
    line-height: 1.6;
}

/* Values Detail */
.values-detail {
    padding: 5rem 5%;
    background: #f8f9fa;
}

.values-detail h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 3rem;
}

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

.value-item {
    flex: 1;
    min-width: 280px;
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.value-item h3 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.value-item p {
    color: #666;
    line-height: 1.7;
}

/* CTA About */
.cta-about {
    padding: 5rem 5%;
    text-align: center;
    background: #2c3e50;
    color: #fff;
}

.cta-about h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-about p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

/* Services Pages */
.services-intro-split {
    display: flex;
    padding: 5rem 5%;
    gap: 4rem;
    align-items: center;
}

.services-intro-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.services-intro-image {
    flex: 1;
}

/* Service Cards Split */
.services-grid-section {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    padding: 3rem 5%;
}

.service-card-split {
    display: flex;
    gap: 3rem;
    align-items: center;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 8px;
}

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

.service-image {
    flex: 1;
}

.service-image img {
    border-radius: 8px;
}

.service-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.service-details h3 {
    font-size: 2rem;
    color: #2c3e50;
}

.service-price {
    font-size: 1.8rem;
    color: #e74c3c;
    font-weight: 700;
}

.service-description {
    color: #555;
    line-height: 1.7;
}

.service-features {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.service-features li {
    padding-left: 1.5rem;
    position: relative;
    color: #555;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: 700;
}

.btn-service {
    display: inline-block;
    padding: 0.9rem 2rem;
    background: #e74c3c;
    color: #fff;
    border-radius: 5px;
    font-weight: 600;
    transition: 0.3s;
    align-self: flex-start;
}

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

/* Additional Services */
.additional-services {
    padding: 3rem 5%;
    background: #f8f9fa;
}

.additional-services h2 {
    text-align: center;
    font-size: 2.2rem;
    color: #2c3e50;
    margin-bottom: 2rem;
}

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

.additional-item {
    flex: 1;
    min-width: 200px;
    text-align: center;
    padding: 2rem;
    background: #fff;
    border-radius: 8px;
}

.additional-item h4 {
    font-size: 1.2rem;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.additional-item p {
    color: #e74c3c;
    font-weight: 700;
}

/* Pricing Notes */
.pricing-notes {
    padding: 3rem 5%;
    max-width: 900px;
    margin: 0 auto;
}

.pricing-notes h3 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.notes-list {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.notes-list li {
    padding-left: 2rem;
    position: relative;
    color: #555;
    line-height: 1.6;
}

.notes-list li::before {
    content: '•';
    position: absolute;
    left: 0.5rem;
    color: #e74c3c;
    font-size: 1.5rem;
}

/* Services CTA */
.services-cta {
    padding: 5rem 5%;
    text-align: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
}

.services-cta h2 {
    font-size: 2.5rem;
}

/* Contact Split */
.contact-split {
    display: flex;
    padding: 5rem 5%;
    gap: 4rem;
}

.contact-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-block h3 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 0.8rem;
}

.contact-block p {
    color: #555;
    line-height: 1.7;
}

.contact-block a {
    color: #e74c3c;
    text-decoration: underline;
}

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

.map-placeholder {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
    border-radius: 8px;
}

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

.map-overlay {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    background: rgba(0,0,0,0.8);
    color: #fff;
    padding: 0.8rem 1.5rem;
    border-radius: 5px;
}

.location-note {
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 8px;
}

.location-note strong {
    color: #2c3e50;
}

/* Contact FAQ */
.contact-faq {
    padding: 5rem 5%;
    background: #f8f9fa;
}

.contact-faq h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 3rem;
}

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

.faq-item {
    flex: 1;
    min-width: 300px;
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
}

.faq-item h4 {
    font-size: 1.2rem;
    color: #2c3e50;
    margin-bottom: 0.8rem;
}

.faq-item p {
    color: #666;
    line-height: 1.7;
}

/* Contact CTA */
.contact-cta {
    padding: 5rem 5%;
    text-align: center;
    background: #2c3e50;
    color: #fff;
}

.contact-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.contact-cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

/* Thanks Page */
.thanks-hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 5%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.thanks-content {
    max-width: 800px;
    background: #fff;
    padding: 4rem;
    border-radius: 8px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background: #27ae60;
    color: #fff;
    font-size: 3rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.thanks-content h1 {
    font-size: 2.8rem;
    color: #2c3e50;
}

.thanks-subtitle {
    font-size: 1.3rem;
    color: #666;
}

.thanks-info {
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 8px;
}

.thanks-next-steps h2 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 2rem;
}

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

.step-item {
    flex: 1;
    min-width: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.step-number {
    width: 50px;
    height: 50px;
    background: #e74c3c;
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-item h3 {
    font-size: 1.3rem;
    color: #2c3e50;
}

.step-item p {
    color: #666;
    line-height: 1.6;
}

.thanks-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.thanks-contact-reminder {
    color: #666;
}

.thanks-contact-reminder a {
    color: #e74c3c;
    text-decoration: underline;
}

/* Legal Pages */
.legal-page {
    padding: 4rem 5%;
    background: #f8f9fa;
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
    background: #fff;
    padding: 3rem;
    border-radius: 8px;
}

.legal-container h1 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.legal-updated {
    color: #7f8c8d;
    font-size: 0.95rem;
    margin-bottom: 2rem;
}

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

.legal-content h2 {
    font-size: 1.8rem;
    color: #2c3e50;
    margin-top: 1.5rem;
}

.legal-content h3 {
    font-size: 1.4rem;
    color: #34495e;
    margin-top: 1rem;
}

.legal-content p,
.legal-content ul,
.legal-content ol {
    color: #555;
    line-height: 1.8;
}

.legal-content ul,
.legal-content ol {
    padding-left: 2rem;
}

.legal-content li {
    margin-bottom: 0.5rem;
}

.legal-content a {
    color: #e74c3c;
    text-decoration: underline;
}

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

.cookie-table th,
.cookie-table td {
    padding: 1rem;
    border: 1px solid #ddd;
    text-align: left;
}

.cookie-table th {
    background: #2c3e50;
    color: #fff;
    font-weight: 600;
}

.legal-footer {
    margin-top: 3rem;
    text-align: center;
}

.btn-back {
    display: inline-block;
    padding: 0.9rem 2rem;
    background: #2c3e50;
    color: #fff;
    border-radius: 5px;
    font-weight: 600;
    transition: 0.3s;
}

.btn-back:hover {
    background: #1a252f;
}

/* Responsive Design */
@media (max-width: 968px) {
    .nav-main {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: #fff;
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        transform: translateX(-100%);
        transition: 0.3s;
    }

    .nav-main.active {
        transform: translateX(0);
    }

    .hamburger {
        display: flex;
    }

    .hero-split,
    .intro-split,
    .services-showcase-split,
    .cta-split-section,
    .page-hero-split,
    .story-split,
    .services-intro-split,
    .service-card-split,
    .contact-split {
        flex-direction: column;
    }

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

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

    .mission-vision {
        flex-direction: column;
    }

    .cards-container,
    .testimonials-grid,
    .team-grid,
    .values-split-grid,
    .additional-grid,
    .faq-grid {
        flex-direction: column;
    }

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

    .cookie-buttons {
        justify-content: center;
    }

    .legal-container {
        padding: 2rem 1.5rem;
    }
}

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

    .page-hero-simple h1,
    .page-hero-content h1 {
        font-size: 2.2rem;
    }

    .intro-content h2,
    .showcase-content h2,
    .story-content h2 {
        font-size: 2rem;
    }

    .thanks-content {
        padding: 2rem;
    }

    .thanks-content h1 {
        font-size: 2rem;
    }

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