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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #ffffff;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style-position: inside;
}

/* Split Navigation */
.nav-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background-color: #ffffff;
    border-bottom: 1px solid #e8ecef;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-left .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a5f7a;
}

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

.nav-right a {
    color: #2c3e50;
    font-weight: 500;
    position: relative;
}

.nav-right a:hover,
.nav-right a.active {
    color: #1a5f7a;
}

.nav-right a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #1a5f7a;
    transition: width 0.3s ease;
}

.nav-right a:hover::after,
.nav-right a.active::after {
    width: 100%;
}

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

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

.hero-content h1 {
    font-size: 3rem;
    line-height: 1.2;
    color: #1a5f7a;
    margin-bottom: 1.5rem;
}

.hero-content p {
    font-size: 1.25rem;
    color: #555;
    margin-bottom: 2rem;
    line-height: 1.7;
}

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

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

/* Buttons */
.btn-primary,
.btn-secondary,
.btn-service,
.btn-submit {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: #1a5f7a;
    color: #ffffff;
}

.btn-primary:hover {
    background-color: #154a5e;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(26, 95, 122, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: #1a5f7a;
    border: 2px solid #1a5f7a;
}

.btn-secondary:hover {
    background-color: #1a5f7a;
    color: #ffffff;
}

.btn-service {
    background-color: #27ae60;
    color: #ffffff;
}

.btn-service:hover {
    background-color: #229954;
}

.btn-submit {
    background-color: #1a5f7a;
    color: #ffffff;
    width: 100%;
    font-size: 1.1rem;
}

.btn-submit:hover {
    background-color: #154a5e;
}

/* Intro Split Section */
.intro-split {
    display: flex;
    align-items: center;
    padding: 4rem 0;
}

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

.intro-visual {
    flex: 1;
    padding: 0 2rem;
}

.intro-visual img {
    border-radius: 8px;
}

.intro-content {
    flex: 1;
    padding: 0 5%;
}

.intro-content h2 {
    font-size: 2.5rem;
    color: #1a5f7a;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.intro-content p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 1.2rem;
    line-height: 1.8;
}

/* Value Blocks */
.value-blocks {
    background-color: #f8f9fa;
    padding: 4rem 5%;
}

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

.value-card {
    flex: 1;
    min-width: 280px;
    background-color: #ffffff;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.value-card h3 {
    font-size: 1.5rem;
    color: #1a5f7a;
    margin-bottom: 1rem;
}

.value-card p {
    color: #555;
    line-height: 1.7;
}

/* Services Section */
.services-section {
    padding: 4rem 0;
}

.section-header {
    text-align: center;
    padding: 0 5%;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.8rem;
    color: #1a5f7a;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.2rem;
    color: #555;
}

.service-split {
    display: flex;
    align-items: center;
    margin-bottom: 3rem;
    padding: 0 5%;
}

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

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

.service-content h3 {
    font-size: 2rem;
    color: #1a5f7a;
    margin-bottom: 1rem;
}

.service-content p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

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

.service-content li {
    margin-bottom: 0.5rem;
    color: #555;
}

.service-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 1.5rem;
}

.service-visual {
    flex: 1;
    padding: 0 2rem;
}

.service-visual img {
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

/* Testimonial Split */
.testimonial-split {
    display: flex;
    background-color: #f0f7f9;
    padding: 4rem 0;
    align-items: center;
}

.testimonial-content {
    flex: 1;
    padding: 0 5%;
}

.testimonial-content blockquote {
    font-size: 1.4rem;
    font-style: italic;
    color: #2c3e50;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.testimonial-content cite {
    font-size: 1.1rem;
    color: #1a5f7a;
    font-style: normal;
    font-weight: 600;
}

.testimonial-visual {
    flex: 1;
    padding: 0 2rem;
}

.testimonial-visual img {
    border-radius: 8px;
}

/* Process Section */
.process-section {
    padding: 4rem 5%;
    background-color: #ffffff;
}

.process-section h2 {
    font-size: 2.5rem;
    color: #1a5f7a;
    text-align: center;
    margin-bottom: 3rem;
}

.process-split {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.process-step {
    flex: 1;
    min-width: 240px;
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    background-color: #1a5f7a;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

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

.process-step p {
    color: #555;
    line-height: 1.7;
}

/* CTA Split Section */
.cta-split {
    display: flex;
    align-items: center;
    padding: 4rem 0;
    background-color: #f8f9fa;
}

.cta-content {
    flex: 1;
    padding: 0 5%;
}

.cta-content h2 {
    font-size: 2.5rem;
    color: #1a5f7a;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    color: #555;
}

.cta-form-wrapper {
    flex: 1;
    padding: 0 5%;
}

/* Contact Form */
.contact-form {
    background-color: #ffffff;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

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

.form-group label {
    display: block;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #1a5f7a;
    box-shadow: 0 0 0 3px rgba(26, 95, 122, 0.1);
}

/* Trust Indicators */
.trust-indicators {
    padding: 3rem 5%;
    background-color: #1a5f7a;
    color: #ffffff;
}

.trust-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: space-around;
}

.trust-item {
    text-align: center;
    flex: 1;
    min-width: 180px;
}

.trust-item strong {
    display: block;
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
}

.trust-item span {
    font-size: 1rem;
    opacity: 0.9;
}

/* Footer */
.footer {
    background-color: #2c3e50;
    color: #ffffff;
    padding: 3rem 5% 1rem;
}

.footer-content {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

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

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

.footer-col p {
    color: #bdc3c7;
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

.footer-col a {
    display: block;
    color: #bdc3c7;
    margin-bottom: 0.5rem;
}

.footer-col a:hover {
    color: #ffffff;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #34495e;
    color: #bdc3c7;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 1.5rem 5%;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.2);
    z-index: 2000;
    display: none;
}

.cookie-banner.show {
    display: block;
}

.cookie-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

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

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

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

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

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

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

.btn-reject:hover {
    background-color: #ffffff;
    color: #2c3e50;
}

/* Page Hero */
.page-hero {
    background: linear-gradient(135deg, #1a5f7a 0%, #27ae60 100%);
    padding: 4rem 5%;
    color: #ffffff;
    text-align: center;
}

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

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

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

.about-content {
    flex: 1;
    padding: 0 5%;
}

.about-content h2 {
    font-size: 2.5rem;
    color: #1a5f7a;
    margin-bottom: 1.5rem;
}

.about-content p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 1.2rem;
    line-height: 1.8;
}

.about-visual {
    flex: 1;
    padding: 0 2rem;
}

.about-visual img {
    border-radius: 8px;
}

/* Values Section */
.values-section {
    padding: 4rem 5%;
    background-color: #f8f9fa;
}

.values-section h2 {
    font-size: 2.5rem;
    color: #1a5f7a;
    text-align: center;
    margin-bottom: 3rem;
}

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

.value-item {
    flex: 1;
    min-width: 280px;
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
}

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

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

/* Approach Split */
.approach-split {
    display: flex;
    align-items: center;
    padding: 4rem 0;
}

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

.approach-visual {
    flex: 1;
    padding: 0 2rem;
}

.approach-visual img {
    border-radius: 8px;
}

.approach-content {
    flex: 1;
    padding: 0 5%;
}

.approach-content h2 {
    font-size: 2.5rem;
    color: #1a5f7a;
    margin-bottom: 1.5rem;
}

.approach-content p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.approach-content ul {
    padding-left: 1.2rem;
}

.approach-content li {
    margin-bottom: 1rem;
    color: #555;
    line-height: 1.7;
}

/* Stats Section */
.stats-section {
    padding: 4rem 5%;
    background-color: #f0f7f9;
}

.stats-section h2 {
    font-size: 2.5rem;
    color: #1a5f7a;
    text-align: center;
    margin-bottom: 3rem;
}

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

.stat-card {
    flex: 1;
    min-width: 220px;
    text-align: center;
    background-color: #ffffff;
    padding: 2.5rem;
    border-radius: 8px;
}

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

.stat-label {
    font-size: 1.1rem;
    color: #555;
}

/* CTA Section */
.cta-section {
    padding: 4rem 5%;
    background-color: #ffffff;
}

.cta-box {
    background: linear-gradient(135deg, #1a5f7a 0%, #27ae60 100%);
    color: #ffffff;
    padding: 3rem;
    border-radius: 12px;
    text-align: center;
}

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

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

/* Services Detail */
.services-detail {
    padding: 2rem 5%;
}

.service-card-full {
    margin-bottom: 3rem;
    background-color: #f8f9fa;
    border-radius: 12px;
    overflow: hidden;
}

.service-header-split {
    display: flex;
    align-items: center;
    background-color: #ffffff;
}

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

.service-info {
    flex: 1;
    padding: 2.5rem;
}

.service-info h2 {
    font-size: 2.2rem;
    color: #1a5f7a;
    margin-bottom: 1rem;
}

.price-tag {
    font-size: 1.8rem;
    font-weight: 700;
    color: #27ae60;
}

.service-image {
    flex: 1;
}

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

.service-description {
    padding: 2.5rem;
}

.service-description h3 {
    font-size: 1.5rem;
    color: #1a5f7a;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

.service-description p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 1.2rem;
    line-height: 1.8;
}

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

.service-description li {
    margin-bottom: 0.8rem;
    color: #555;
}

/* Comparison Section */
.comparison-section {
    padding: 4rem 5%;
    background-color: #f8f9fa;
}

.comparison-section h2 {
    font-size: 2.5rem;
    color: #1a5f7a;
    text-align: center;
    margin-bottom: 3rem;
}

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

.comparison-item {
    flex: 1;
    min-width: 300px;
    background-color: #ffffff;
    padding: 2.5rem;
    border-radius: 8px;
}

.comparison-item.highlight {
    border: 3px solid #27ae60;
    box-shadow: 0 4px 16px rgba(39, 174, 96, 0.2);
}

.comparison-item h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.comparison-list {
    list-style: none;
    padding: 0;
}

.comparison-list li {
    padding: 0.8rem 0;
    border-bottom: 1px solid #e8ecef;
    padding-left: 1.8rem;
    position: relative;
}

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

.comparison-list.negative li::before {
    content: '✗';
    position: absolute;
    left: 0;
    color: #e74c3c;
    font-weight: 700;
}

/* Contact Split */
.contact-split {
    display: flex;
    align-items: flex-start;
    padding: 4rem 0;
}

.contact-info {
    flex: 1;
    padding: 0 5%;
}

.contact-info h2 {
    font-size: 2.5rem;
    color: #1a5f7a;
    margin-bottom: 2rem;
}

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

.info-block h3 {
    font-size: 1.5rem;
    color: #1a5f7a;
    margin-bottom: 0.8rem;
}

.info-block p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
}

.info-block a {
    color: #1a5f7a;
}

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

.contact-visual {
    flex: 1;
    padding: 0 2rem;
}

.contact-visual img {
    border-radius: 8px;
}

/* Location Section */
.location-section {
    padding: 4rem 5%;
    background-color: #f8f9fa;
}

.location-section h2 {
    font-size: 2.5rem;
    color: #1a5f7a;
    text-align: center;
    margin-bottom: 1rem;
}

.location-section > p {
    text-align: center;
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 3rem;
}

.location-details {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.location-item {
    flex: 1;
    min-width: 250px;
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
}

.location-item h3 {
    font-size: 1.5rem;
    color: #1a5f7a;
    margin-bottom: 1rem;
}

.location-item p {
    color: #555;
    line-height: 1.7;
}

/* FAQ Section */
.faq-section {
    padding: 4rem 5%;
}

.faq-section h2 {
    font-size: 2.5rem;
    color: #1a5f7a;
    text-align: center;
    margin-bottom: 3rem;
}

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

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

.faq-item h3 {
    font-size: 1.3rem;
    color: #1a5f7a;
    margin-bottom: 1rem;
}

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

/* Thanks Page */
.thanks-hero {
    padding: 4rem 5%;
    text-align: center;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

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

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

.thanks-message {
    font-size: 1.4rem;
    color: #555;
    margin-bottom: 2rem;
}

.service-confirmation {
    background-color: #f0f7f9;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.service-selected {
    font-size: 1.2rem;
    color: #1a5f7a;
}

.thanks-content p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 1rem;
}

/* Next Steps */
.next-steps {
    padding: 4rem 5%;
    background-color: #f8f9fa;
}

.next-steps h2 {
    font-size: 2.5rem;
    color: #1a5f7a;
    text-align: center;
    margin-bottom: 3rem;
}

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

.step-item {
    flex: 1;
    min-width: 240px;
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
}

.step-icon {
    width: 60px;
    height: 60px;
    background-color: #1a5f7a;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

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

.step-item p {
    color: #555;
    line-height: 1.7;
}

/* Thanks Resources */
.thanks-resources {
    padding: 4rem 5%;
}

.thanks-resources h2 {
    font-size: 2.5rem;
    color: #1a5f7a;
    text-align: center;
    margin-bottom: 3rem;
}

.resource-cards {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.resource-card {
    flex: 1;
    min-width: 280px;
    background-color: #f8f9fa;
    padding: 2.5rem;
    border-radius: 8px;
    text-align: center;
}

.resource-card h3 {
    font-size: 1.5rem;
    color: #1a5f7a;
    margin-bottom: 1rem;
}

.resource-card p {
    color: #555;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

/* Legal Page */
.legal-page {
    padding: 2rem 5%;
}

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

.legal-content h1 {
    font-size: 2.8rem;
    color: #1a5f7a;
    margin-bottom: 1rem;
}

.last-updated {
    color: #777;
    font-style: italic;
    margin-bottom: 2rem;
}

.legal-content h2 {
    font-size: 1.8rem;
    color: #1a5f7a;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.legal-content h3 {
    font-size: 1.4rem;
    color: #2c3e50;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
}

.legal-content p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.legal-content ul {
    margin-bottom: 1rem;
    padding-left: 2rem;
}

.legal-content li {
    margin-bottom: 0.5rem;
    color: #555;
    line-height: 1.7;
}

.legal-content a {
    color: #1a5f7a;
}

.legal-content a:hover {
    text-decoration: underline;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero-split,
    .intro-split,
    .service-split,
    .testimonial-split,
    .cta-split,
    .about-split,
    .approach-split,
    .contact-split,
    .service-header-split {
        flex-direction: column;
    }

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

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

    .hero-content,
    .intro-content,
    .service-content,
    .testimonial-content,
    .cta-content,
    .about-content,
    .approach-content,
    .contact-info {
        padding: 2rem 5%;
    }

    .hero-visual,
    .intro-visual,
    .service-visual,
    .testimonial-visual,
    .about-visual,
    .approach-visual,
    .contact-visual,
    .service-image {
        padding: 0;
    }

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

    .nav-right {
        gap: 1rem;
    }

    .cookie-content {
        flex-direction: column;
    }

    .cookie-buttons {
        width: 100%;
        flex-direction: column;
    }

    .btn-accept,
    .btn-reject {
        width: 100%;
    }

    .process-split,
    .value-grid,
    .values-grid,
    .stats-grid,
    .comparison-grid,
    .location-details,
    .faq-grid,
    .steps-grid,
    .resource-cards,
    .trust-grid {
        flex-direction: column;
    }

    .footer-content {
        flex-direction: column;
    }

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