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

:root {
    --primary-color: #1a5490;
    --secondary-color: #2c7abf;
    --accent-color: #f47920;
    --dark-color: #1a1a1a;
    --light-color: #f8f9fa;
    --gray-color: #6c757d;
    --border-color: #e0e0e0;
    --success-color: #28a745;
    --white: #ffffff;
    --text-color: #333333;
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    color: var(--text-color);
    background: var(--white);
    font-size: 16px;
}

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

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

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

h1, h2, h3, h4, h5, h6 {
    line-height: 1.3;
    margin-bottom: 1rem;
    color: var(--dark-color);
    font-weight: 700;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1.2rem;
}

ul {
    list-style-position: inside;
    margin-bottom: 1.2rem;
}

/* Navigation - Split Style */
.nav-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.nav-right {
    display: flex;
    gap: 2rem;
}

.nav-right a {
    font-weight: 500;
    color: var(--text-color);
    transition: var(--transition);
}

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

/* Hero Split */
.hero-split {
    display: flex;
    min-height: 85vh;
    align-items: stretch;
}

.hero-left,
.hero-right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-left {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 4rem 5%;
}

.hero-content {
    max-width: 600px;
    color: var(--white);
}

.hero-content h1 {
    color: var(--white);
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

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

.hero-right {
    background: var(--light-color);
    overflow: hidden;
}

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

/* Intro Split */
.intro-split {
    display: flex;
    align-items: stretch;
}

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

.intro-left {
    padding: 5rem 5%;
    background: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.intro-right {
    background: var(--light-color);
    overflow: hidden;
}

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

/* Problem Section */
.problem-section {
    background: var(--light-color);
    padding: 5rem 5%;
}

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

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

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

.problem-card {
    flex: 1;
    min-width: 280px;
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: var(--transition);
}

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

.problem-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Solution Split */
.solution-split {
    display: flex;
    align-items: stretch;
}

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

.solution-left {
    padding: 5rem 5%;
    background: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.solution-right {
    background: var(--light-color);
    overflow: hidden;
}

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

.solution-features {
    margin: 2rem 0;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.feature-icon {
    color: var(--success-color);
    font-size: 1.5rem;
    font-weight: bold;
}

/* Services Preview */
.services-preview {
    padding: 5rem 5%;
    background: var(--white);
}

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

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

.services-split-layout {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.service-card-half {
    flex: 1;
    background: var(--light-color);
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: var(--transition);
}

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

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.service-header h3 {
    flex: 1;
    color: var(--primary-color);
    font-size: 1.5rem;
}

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

.service-features {
    list-style: none;
    margin-top: 1.5rem;
}

.service-features li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.service-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* Form Section */
.form-section {
    background: var(--light-color);
    padding: 5rem 5%;
}

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

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

.form-left {
    background: var(--primary-color);
    color: var(--white);
}

.form-left h2 {
    color: var(--white);
    margin-bottom: 1rem;
}

.trust-elements {
    margin-top: 3rem;
}

.trust-item {
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.trust-item strong {
    font-size: 1.25rem;
}

.trust-item span {
    opacity: 0.9;
}

/* Contact Form */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.form-group label {
    font-weight: 600;
    color: var(--dark-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.875rem;
    border: 2px solid var(--border-color);
    border-radius: 5px;
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
}

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

/* Buttons */
.btn-primary,
.btn-secondary,
.btn-submit,
.btn-cta-large,
.btn-service {
    display: inline-block;
    padding: 1rem 2rem;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

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

.btn-primary:hover {
    background: #d66718;
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(244, 121, 32, 0.3);
}

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

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

.btn-submit {
    background: var(--primary-color);
    color: var(--white);
    width: 100%;
}

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

.btn-service {
    background: var(--primary-color);
    color: var(--white);
    margin-top: 1.5rem;
}

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

.btn-cta-large {
    background: var(--accent-color);
    color: var(--white);
    padding: 1.25rem 3rem;
    font-size: 1.25rem;
}

.btn-cta-large:hover {
    background: #d66718;
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(244, 121, 32, 0.3);
}

/* Testimonials */
.testimonials-section {
    padding: 5rem 5%;
    background: var(--white);
}

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

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

.testimonial-card {
    flex: 1;
    min-width: 300px;
    background: var(--light-color);
    padding: 2rem;
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 1rem;
}

.testimonial-author {
    font-weight: 600;
    color: var(--gray-color);
}

/* CTA Sections */
.cta-final,
.cta-about,
.cta-contact,
.service-cta {
    padding: 5rem 5%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
    color: var(--white);
}

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

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

/* Footer */
.footer {
    background: var(--dark-color);
    color: var(--white);
    padding: 3rem 5% 1rem;
}

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

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

.footer-col h4 {
    color: var(--white);
    margin-bottom: 1rem;
}

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

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

.footer-col a {
    color: rgba(255, 255, 255, 0.8);
}

.footer-col a:hover {
    color: var(--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);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark-color);
    color: var(--white);
    padding: 1.5rem 5%;
    box-shadow: 0 -4px 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;
}

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

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

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

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

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

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

.btn-cookie-reject:hover {
    background: var(--white);
    color: var(--dark-color);
}

/* Page Hero */
.page-hero {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 5rem 5%;
    text-align: center;
}

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

.page-hero-content p {
    color: var(--white);
    font-size: 1.5rem;
    opacity: 0.95;
}

/* About Split */
.about-split {
    display: flex;
    align-items: stretch;
}

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

.about-left {
    padding: 5rem 5%;
    background: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-right {
    background: var(--light-color);
    overflow: hidden;
}

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

/* Mission Section */
.mission-section {
    padding: 5rem 5%;
    background: var(--light-color);
}

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

.mission-container h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.mission-lead {
    font-size: 1.25rem;
    color: var(--gray-color);
    margin-bottom: 3rem;
}

.mission-points {
    display: flex;
    gap: 3rem;
    margin-top: 3rem;
}

.mission-point {
    flex: 1;
    text-align: left;
}

.mission-point h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Values Split */
.values-split {
    display: flex;
    align-items: stretch;
}

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

.values-left {
    padding: 5rem 5%;
    background: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.values-right {
    background: var(--light-color);
    overflow: hidden;
}

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

.stats-grid {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

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

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

.stat-label {
    color: var(--gray-color);
}

/* Team Section */
.team-section {
    padding: 5rem 5%;
    background: var(--white);
}

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

.team-container h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

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

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

.team-member {
    flex: 1;
    min-width: 280px;
    background: var(--light-color);
    padding: 2rem;
    border-radius: 10px;
}

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

.team-role {
    display: block;
    font-weight: 600;
    color: var(--gray-color);
    margin-bottom: 1rem;
}

/* Approach Section */
.approach-section {
    padding: 5rem 5%;
    background: var(--light-color);
}

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

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

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

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

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

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

/* Services Detailed */
.services-intro {
    padding: 3rem 5%;
    background: var(--white);
    text-align: center;
}

.services-intro-content {
    max-width: 800px;
    margin: 0 auto;
}

.services-detailed {
    background: var(--light-color);
}

.service-detail-split {
    display: flex;
    align-items: stretch;
    margin-bottom: 0;
}

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

.service-detail-left,
.service-detail-right {
    flex: 1;
}

.service-detail-left {
    padding: 5rem 5%;
    background: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-detail-right {
    background: var(--light-color);
    overflow: hidden;
}

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

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

.price-display {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin: 1rem 0;
}

.service-includes {
    list-style: none;
    margin: 1.5rem 0;
}

.service-includes li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
}

.service-includes li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
    font-size: 1.25rem;
}

/* Pricing Info */
.pricing-info {
    padding: 5rem 5%;
    background: var(--white);
}

.pricing-info-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.pricing-info-content h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.pricing-features {
    display: flex;
    gap: 3rem;
    margin-top: 3rem;
}

.pricing-feature {
    flex: 1;
    text-align: left;
}

.pricing-feature h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Contact Split Section */
.contact-split-section {
    display: flex;
    gap: 3rem;
    padding: 5rem 5%;
    max-width: 1400px;
    margin: 0 auto;
}

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

.contact-details {
    margin: 2rem 0;
}

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

.contact-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.contact-text h3 {
    margin-bottom: 0.5rem;
}

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

.contact-note {
    background: var(--light-color);
    padding: 2rem;
    border-radius: 10px;
    margin-top: 2rem;
}

.map-placeholder {
    width: 100%;
    height: 400px;
    background: var(--light-color);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 2rem;
}

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

.location-info {
    background: var(--light-color);
    padding: 2rem;
    border-radius: 10px;
}

.location-info ul {
    list-style: none;
    margin-top: 1rem;
}

.location-info ul li {
    padding: 0.5rem 0;
}

/* Contact FAQ */
.contact-faq {
    padding: 5rem 5%;
    background: var(--light-color);
}

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

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

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

.faq-item {
    flex: 1;
    min-width: 280px;
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
}

.faq-item h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Thanks Page */
.thanks-section {
    padding: 5rem 5%;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-container {
    max-width: 800px;
    text-align: center;
}

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

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

.thanks-message {
    font-size: 1.25rem;
    color: var(--gray-color);
    margin-bottom: 3rem;
}

.thanks-info {
    background: var(--light-color);
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 3rem;
}

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

.next-steps h2 {
    margin-bottom: 2rem;
}

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

.step-box {
    flex: 1;
    background: var(--light-color);
    padding: 2rem;
    border-radius: 10px;
    text-align: left;
}

.step-num {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.step-box h3 {
    margin-bottom: 0.5rem;
}

.thanks-contact {
    background: var(--light-color);
    padding: 2rem;
    border-radius: 10px;
    margin: 3rem 0;
}

.email-link {
    display: inline-block;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-top: 1rem;
}

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

/* Legal Pages */
.legal-page {
    padding: 3rem 5%;
    background: var(--white);
}

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

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

.legal-intro {
    font-size: 1.1rem;
    color: var(--gray-color);
    margin-bottom: 3rem;
}

.legal-container h2 {
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.legal-container h3 {
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.legal-container ul,
.legal-container ol {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.legal-container li {
    margin-bottom: 0.75rem;
}

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

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

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

/* Responsive Design */
@media (max-width: 968px) {
    .nav-right {
        gap: 1rem;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    .hero-split,
    .intro-split,
    .solution-split,
    .about-split,
    .values-split,
    .service-detail-split {
        flex-direction: column;
    }

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

    .services-split-layout {
        flex-direction: column;
    }

    .form-container-split {
        flex-direction: column;
    }

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

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

    .stats-grid {
        flex-direction: column;
        gap: 1.5rem;
    }

    .approach-split {
        flex-direction: column;
    }

    .pricing-features {
        flex-direction: column;
        gap: 2rem;
    }

    .contact-split-section {
        flex-direction: column;
    }

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

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

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

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

@media (max-width: 640px) {
    .nav-right {
        flex-direction: column;
        gap: 0.5rem;
        display: none;
    }

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

    h1 {
        font-size: 1.75rem;
    }

    h2 {
        font-size: 1.5rem;
    }

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

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

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

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