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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

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

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

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

ul {
    list-style: none;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #fff;
    padding: 20px;
    z-index: 10000;
    display: none;
}

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.cookie-content p {
    margin-bottom: 15px;
    font-size: 14px;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
}

.btn-primary,
.btn-secondary {
    padding: 10px 25px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

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

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

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

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

.main-nav {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo {
    font-size: 22px;
    font-weight: 700;
    color: #2c3e50;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.nav-links {
    display: flex;
    gap: 25px;
}

.nav-links a {
    color: #555;
    font-size: 15px;
    transition: color 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: #27ae60;
}

.ad-notice {
    font-size: 12px;
    color: #888;
    padding: 5px 12px;
    border: 1px solid #ddd;
    border-radius: 3px;
}

.hero-split {
    display: flex;
    min-height: 600px;
    flex-direction: column;
}

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

.hero-left {
    padding: 60px 40px;
    background-color: #f8f9fa;
}

.hero-content {
    max-width: 550px;
}

.hero-content h1 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #2c3e50;
}

.hero-subtext {
    font-size: 18px;
    color: #555;
    margin-bottom: 30px;
    line-height: 1.7;
}

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

.cta-button {
    display: inline-block;
    padding: 15px 35px;
    background-color: #27ae60;
    color: #fff;
    border-radius: 5px;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.cta-button:hover {
    background-color: #229954;
    transform: translateY(-2px);
}

.intro-section {
    padding: 80px 0;
    background-color: #fff;
}

.split-content {
    display: flex;
    gap: 60px;
    flex-direction: column;
}

.content-block {
    flex: 1;
}

.content-block h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.content-block h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #34495e;
}

.content-block p {
    margin-bottom: 15px;
    color: #555;
    font-size: 16px;
}

.highlight-box {
    background-color: #ecf0f1;
    padding: 35px;
    border-radius: 8px;
}

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

.feature-list li {
    padding-left: 30px;
    position: relative;
    margin-bottom: 12px;
    font-size: 16px;
    color: #555;
}

.feature-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
}

.services-preview {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.section-header-centered {
    text-align: center;
    margin-bottom: 60px;
}

.section-header-centered h2 {
    font-size: 36px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.section-header-centered p {
    font-size: 18px;
    color: #666;
}

.service-grid {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.service-card {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.split-card {
    display: flex;
    flex-direction: column;
}

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

.service-image {
    flex: 1;
}

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

.service-info {
    flex: 1;
    padding: 35px;
}

.service-info h3 {
    font-size: 26px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.service-info p {
    margin-bottom: 20px;
    color: #555;
    font-size: 16px;
}

.price-tag {
    font-size: 24px;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 20px;
}

.btn-service {
    padding: 12px 28px;
    background-color: #34495e;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 15px;
    transition: background-color 0.3s ease;
}

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

.approach-section {
    padding: 80px 0;
    background-color: #fff;
}

.cta-link {
    display: inline-block;
    color: #27ae60;
    font-weight: 600;
    margin-top: 20px;
    border-bottom: 2px solid #27ae60;
    padding-bottom: 2px;
    transition: color 0.3s ease;
}

.cta-link:hover {
    color: #229954;
}

.testimonials-section {
    padding: 80px 0;
    background-color: #2c3e50;
    color: #fff;
}

.section-title-left {
    font-size: 36px;
    margin-bottom: 40px;
    color: #fff;
}

.testimonials-grid {
    display: flex;
    gap: 30px;
    flex-direction: column;
}

.testimonial-card {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 8px;
}

.testimonial-text {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 15px;
    font-style: italic;
}

.testimonial-author {
    font-size: 14px;
    color: #bdc3c7;
}

.contact-form-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.form-wrapper {
    display: flex;
    gap: 60px;
    flex-direction: column;
}

.split-layout .form-intro,
.split-layout .form-container {
    flex: 1;
}

.form-intro h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.form-intro p {
    margin-bottom: 25px;
    color: #555;
    font-size: 16px;
}

.contact-benefits {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.benefit-icon {
    color: #27ae60;
    font-weight: bold;
    font-size: 18px;
}

.form-container {
    background-color: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: #34495e;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.btn-submit {
    padding: 15px 35px;
    background-color: #27ae60;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.final-cta {
    padding: 80px 0;
    background-color: #34495e;
    color: #fff;
    text-align: center;
}

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

.cta-content-centered h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.cta-content-centered p {
    font-size: 18px;
    margin-bottom: 30px;
    line-height: 1.7;
}

.btn-large {
    display: inline-block;
    padding: 18px 45px;
    background-color: #27ae60;
    color: #fff;
    border-radius: 5px;
    font-size: 17px;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-large:hover {
    background-color: #229954;
    transform: translateY(-2px);
}

.main-footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 60px 0 30px;
}

.footer-grid {
    display: flex;
    gap: 40px;
    flex-direction: column;
    margin-bottom: 40px;
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #fff;
}

.footer-col p,
.footer-col li {
    font-size: 14px;
    color: #bdc3c7;
    margin-bottom: 8px;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-col a {
    transition: color 0.3s ease;
}

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

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

.footer-bottom p {
    font-size: 13px;
    color: #95a5a6;
    margin-bottom: 10px;
}

.disclaimer {
    font-size: 12px;
    color: #7f8c8d;
    line-height: 1.6;
    max-width: 900px;
    margin: 15px auto 0;
}

.page-hero {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: #fff;
    padding: 80px 0;
    text-align: center;
}

.page-hero h1 {
    font-size: 42px;
    margin-bottom: 15px;
}

.hero-subtitle {
    font-size: 20px;
    color: #ecf0f1;
}

.story-section {
    padding: 80px 0;
    background-color: #fff;
}

.values-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.section-title-centered {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: #2c3e50;
}

.values-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.value-card {
    display: flex;
    gap: 30px;
    flex-direction: column;
    align-items: center;
}

.value-card.reverse {
    flex-direction: column-reverse;
}

.value-icon {
    flex: 1;
}

.value-icon img {
    border-radius: 8px;
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.value-content {
    flex: 1;
}

.value-content h3 {
    font-size: 26px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.value-content p {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
}

.approach-detail-section {
    padding: 80px 0;
    background-color: #fff;
}

.split-layout-asymmetric {
    display: flex;
    gap: 60px;
    flex-direction: column;
}

.content-narrow {
    flex: 0 0 100%;
}

.content-narrow h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.content-narrow p {
    font-size: 16px;
    color: #555;
}

.content-wide {
    flex: 1;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.process-step {
    display: flex;
    gap: 25px;
    align-items: flex-start;
}

.step-number {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background-color: #27ae60;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
}

.step-content h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #2c3e50;
}

.step-content p {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
}

.experience-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.stats-inline {
    display: flex;
    gap: 40px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 36px;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 14px;
    color: #666;
}

.cta-section {
    padding: 80px 0;
    background-color: #ecf0f1;
}

.cta-box-centered {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-box-centered h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.cta-box-centered p {
    font-size: 17px;
    color: #555;
    margin-bottom: 30px;
    line-height: 1.7;
}

.services-detail-section {
    padding: 80px 0;
    background-color: #fff;
}

.service-detail {
    display: flex;
    gap: 60px;
    margin-bottom: 80px;
    flex-direction: column;
}

.service-detail.reverse {
    flex-direction: column-reverse;
}

.service-image-large {
    flex: 1;
}

.service-image-large img {
    border-radius: 8px;
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.service-description {
    flex: 1;
}

.service-description h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.price-highlight {
    font-size: 28px;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 25px;
}

.service-description p {
    font-size: 16px;
    color: #555;
    margin-bottom: 15px;
    line-height: 1.7;
}

.benefit-list {
    list-style: none;
    margin-top: 20px;
    margin-bottom: 30px;
}

.benefit-list li {
    padding-left: 30px;
    position: relative;
    margin-bottom: 12px;
    font-size: 15px;
    color: #555;
}

.benefit-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
}

.btn-service-detail {
    display: inline-block;
    padding: 14px 32px;
    background-color: #27ae60;
    color: #fff;
    border-radius: 5px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

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

.pricing-note-section {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.note-box {
    background-color: #fff;
    padding: 40px;
    border-radius: 8px;
    border-left: 4px solid #27ae60;
}

.note-box h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.note-box p {
    font-size: 16px;
    color: #555;
    margin-bottom: 15px;
}

.pricing-factors {
    list-style: none;
    margin: 20px 0;
}

.pricing-factors li {
    padding-left: 25px;
    position: relative;
    margin-bottom: 10px;
    font-size: 15px;
    color: #555;
}

.pricing-factors li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-size: 20px;
}

.process-overview-section {
    padding: 80px 0;
    background-color: #fff;
}

.process-timeline {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.timeline-item {
    display: flex;
    gap: 25px;
    align-items: flex-start;
}

.timeline-marker {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background-color: #34495e;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
}

.timeline-content h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #2c3e50;
}

.timeline-content p {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
}

.contact-info-section {
    padding: 80px 0;
    background-color: #fff;
}

.contact-grid {
    display: flex;
    gap: 40px;
    flex-direction: column;
}

.contact-card {
    background-color: #f8f9fa;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.contact-icon img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.contact-details {
    padding: 30px;
}

.contact-details h2 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.address-line {
    font-size: 16px;
    color: #555;
    margin-bottom: 5px;
}

.contact-method {
    font-size: 15px;
    color: #666;
    margin-bottom: 10px;
}

.email-display {
    font-size: 17px;
    color: #27ae60;
    font-weight: 600;
    margin-bottom: 15px;
}

.note-text {
    font-size: 14px;
    color: #888;
    margin-top: 15px;
    font-style: italic;
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    font-size: 15px;
}

.day {
    color: #555;
    font-weight: 600;
}

.time {
    color: #666;
}

.map-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.location-info {
    display: flex;
    gap: 50px;
    flex-direction: column;
    margin-top: 40px;
}

.transport-list,
.parking-list {
    list-style: none;
    margin-top: 15px;
}

.transport-list li,
.parking-list li {
    padding-left: 25px;
    position: relative;
    margin-bottom: 10px;
    font-size: 15px;
    color: #555;
}

.transport-list li:before,
.parking-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #27ae60;
}

.contact-cta-section {
    padding: 80px 0;
    background-color: #fff;
}

.cta-split {
    display: flex;
    gap: 60px;
    align-items: center;
    flex-direction: column;
}

.cta-content {
    flex: 1;
}

.cta-content h2 {
    font-size: 30px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.cta-content p {
    font-size: 16px;
    color: #555;
    margin-bottom: 25px;
    line-height: 1.7;
}

.cta-image {
    flex: 1;
}

.cta-image img {
    border-radius: 8px;
    width: 100%;
    height: auto;
}

.faq-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.faq-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.faq-item {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    border-left: 4px solid #27ae60;
}

.faq-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.faq-item p {
    font-size: 15px;
    color: #555;
    line-height: 1.7;
}

.thanks-hero {
    padding: 100px 0;
    background: linear-gradient(135deg, #27ae60 0%, #229954 100%);
    color: #fff;
    text-align: center;
}

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

.success-icon {
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
}

.thanks-content h1 {
    font-size: 40px;
    margin-bottom: 20px;
}

.thanks-message {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 25px;
}

.service-confirmation {
    background-color: rgba(255, 255, 255, 0.2);
    padding: 15px;
    border-radius: 5px;
    font-size: 16px;
    margin-top: 20px;
}

.next-steps-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.steps-grid {
    display: flex;
    gap: 40px;
    flex-direction: column;
}

.step-card {
    background-color: #fff;
    padding: 35px;
    border-radius: 8px;
    text-align: center;
}

.step-number-badge {
    width: 60px;
    height: 60px;
    background-color: #27ae60;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto 20px;
}

.step-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.step-card p {
    font-size: 15px;
    color: #555;
    line-height: 1.7;
}

.info-section {
    padding: 80px 0;
    background-color: #fff;
}

.info-split {
    display: flex;
    gap: 60px;
    align-items: center;
    flex-direction: column;
}

.info-content {
    flex: 1;
}

.info-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.info-content p {
    font-size: 16px;
    color: #555;
    margin-bottom: 25px;
}

.link-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.info-link {
    color: #27ae60;
    font-weight: 600;
    font-size: 16px;
    transition: color 0.3s ease;
}

.info-link:hover {
    color: #229954;
}

.info-image {
    flex: 1;
}

.info-image img {
    border-radius: 8px;
    width: 100%;
    height: auto;
}

.reassurance-section {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.reassurance-box {
    background-color: #fff;
    padding: 40px;
    border-radius: 8px;
    border-left: 4px solid #3498db;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.reassurance-box h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.reassurance-box p {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
}

.email-inline {
    color: #27ae60;
    font-weight: 600;
}

.legal-page {
    padding: 80px 0;
    background-color: #fff;
}

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

.legal-content h1 {
    font-size: 38px;
    margin-bottom: 30px;
    color: #2c3e50;
}

.legal-content h2 {
    font-size: 26px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #34495e;
}

.legal-content h3 {
    font-size: 20px;
    margin-top: 25px;
    margin-bottom: 15px;
    color: #34495e;
}

.legal-content h4 {
    font-size: 17px;
    margin-top: 20px;
    margin-bottom: 10px;
    color: #555;
}

.legal-content p {
    font-size: 15px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 15px;
}

.legal-content ul,
.legal-content ol {
    margin: 15px 0 15px 25px;
}

.legal-content li {
    font-size: 15px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 10px;
    list-style: disc;
}

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

.legal-content a:hover {
    color: #229954;
}

.legal-update {
    font-size: 13px;
    color: #888;
    margin-top: 40px;
    font-style: italic;
}

@media (min-width: 768px) {
    .hero-split {
        flex-direction: row;
    }

    .split-content {
        flex-direction: row;
    }

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

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

    .service-image img {
        height: 100%;
    }

    .form-wrapper {
        flex-direction: row;
    }

    .footer-grid {
        flex-direction: row;
    }

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

    .value-card {
        flex-direction: row;
    }

    .value-card.reverse {
        flex-direction: row-reverse;
    }

    .split-layout-asymmetric {
        flex-direction: row;
    }

    .content-narrow {
        flex: 0 0 30%;
    }

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

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

    .contact-grid {
        flex-direction: row;
    }

    .cta-split {
        flex-direction: row;
    }

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

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

    .faq-grid {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
    }

    .faq-item {
        flex: 0 0 calc(50% - 15px);
    }

    .cookie-content {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }

    .cookie-content p {
        margin-bottom: 0;
    }
}

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

    .hero-content h1 {
        font-size: 32px;
    }

    .hero-subtext {
        font-size: 16px;
    }

    .section-header-centered h2,
    .section-title-centered {
        font-size: 28px;
    }

    .page-hero h1 {
        font-size: 32px;
    }
}
