* {
    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: opacity 0.3s ease;
}

a:hover {
    opacity: 0.7;
}

.header-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 4rem;
    background-color: #ffffff;
    border-bottom: 1px solid #e1e8ed;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-left .brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a365d;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.header-right a {
    font-size: 0.95rem;
    font-weight: 500;
    color: #2c3e50;
}

.ad-disclosure {
    font-size: 0.75rem;
    color: #718096;
    border: 1px solid #cbd5e0;
    padding: 0.3rem 0.7rem;
    border-radius: 4px;
    background-color: #f7fafc;
}

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

.hero-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem 5rem;
    background-color: #f8fafc;
}

.hero-left h1 {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    color: #1a202c;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: #4a5568;
    margin-bottom: 2rem;
    max-width: 600px;
}

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

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

.cta-primary {
    display: inline-block;
    background-color: #2563eb;
    color: #ffffff;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    border: none;
    transition: background-color 0.3s ease;
}

.cta-primary:hover {
    background-color: #1d4ed8;
    opacity: 1;
}

.cta-secondary {
    display: inline-block;
    background-color: #e2e8f0;
    color: #2d3748;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    border: none;
    transition: background-color 0.3s ease;
}

.cta-secondary:hover {
    background-color: #cbd5e0;
    opacity: 1;
}

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

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

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

.mission-content {
    flex: 1;
    padding: 5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.mission-content h2 {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #1a202c;
}

.mission-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 1.2rem;
}

.services-section {
    padding: 5rem 4rem;
    background-color: #f8fafc;
}

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

.section-header-center h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1a202c;
}

.section-header-center p {
    font-size: 1.1rem;
    color: #4a5568;
}

.services-grid-split {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card-split {
    display: flex;
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
}

.service-card-split:nth-child(even) {
    flex-direction: row-reverse;
}

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

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

.service-details {
    flex: 1;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-details h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1a202c;
}

.service-details p {
    font-size: 1rem;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 1.5rem;
}

.service-price {
    font-size: 2rem;
    font-weight: 800;
    color: #2563eb;
    margin-bottom: 1.5rem;
}

.btn-select-service {
    background-color: #2563eb;
    color: #ffffff;
    padding: 0.9rem 1.8rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
    align-self: flex-start;
}

.btn-select-service:hover {
    background-color: #1d4ed8;
}

.form-section-split {
    padding: 5rem 4rem;
    background-color: #ffffff;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.form-intro {
    flex: 1;
}

.form-intro h2 {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1a202c;
}

.form-intro p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #4a5568;
}

.form-container {
    flex: 1;
}

.contact-form {
    background-color: #f8fafc;
    padding: 2.5rem;
    border-radius: 12px;
}

.selected-service-info {
    background-color: #dbeafe;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.selected-service-info.hidden {
    display: none;
}

.selected-service-info p {
    font-size: 0.95rem;
    color: #1e40af;
    margin-bottom: 0.3rem;
}

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

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

.form-group input,
.form-group select {
    width: 100%;
    padding: 0.9rem;
    border: 1px solid #cbd5e0;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    background-color: #ffffff;
}

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

.btn-submit {
    width: 100%;
    background-color: #2563eb;
    color: #ffffff;
    padding: 1rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

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

.benefits-content {
    flex: 1;
    padding: 5rem;
    background-color: #f8fafc;
}

.benefits-content h2 {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 2.5rem;
    color: #1a202c;
}

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

.benefit-item h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    color: #2563eb;
}

.benefit-item p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #4a5568;
}

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

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

.science-section {
    padding: 5rem 4rem;
    background-color: #ffffff;
    max-width: 900px;
    margin: 0 auto;
}

.science-section h2 {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #1a202c;
}

.science-section p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 1.5rem;
}

.science-section a {
    color: #2563eb;
    font-weight: 600;
}

.science-section a:hover {
    text-decoration: underline;
}

.disclaimer-text {
    background-color: #fef3c7;
    padding: 1.5rem;
    border-left: 4px solid #f59e0b;
    border-radius: 4px;
    font-size: 0.95rem;
    line-height: 1.7;
    color: #78350f;
}

.footer-split {
    background-color: #1a202c;
    color: #e2e8f0;
    padding: 4rem 4rem 2rem 4rem;
}

.footer-columns {
    display: flex;
    justify-content: space-between;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-col {
    flex: 1;
}

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

.footer-col p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #cbd5e0;
}

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

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

.footer-col ul li a {
    color: #cbd5e0;
    font-size: 0.95rem;
}

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

.references-list {
    list-style: decimal;
    padding-left: 1.2rem;
}

.references-list li {
    margin-bottom: 0.7rem;
}

.references-list a {
    color: #60a5fa;
    font-size: 0.9rem;
}

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

.footer-bottom p {
    font-size: 0.9rem;
    color: #a0aec0;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a202c;
    color: #ffffff;
    padding: 1.5rem 2rem;
    z-index: 10000;
    box-shadow: 0 -4px 6px rgba(0, 0, 0, 0.1);
}

.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-content p {
    font-size: 0.95rem;
    line-height: 1.6;
    flex: 1;
}

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

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

.btn-cookie-accept {
    background-color: #2563eb;
    color: #ffffff;
}

.btn-cookie-accept:hover {
    background-color: #1d4ed8;
}

.btn-cookie-reject {
    background-color: #4a5568;
    color: #ffffff;
}

.btn-cookie-reject:hover {
    background-color: #2d3748;
}

.about-hero-split {
    display: flex;
    min-height: 500px;
}

.about-content-left {
    flex: 1;
    padding: 5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #f8fafc;
}

.about-content-left h1 {
    font-size: 2.75rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: #1a202c;
}

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

.about-image-right {
    flex: 1;
    overflow: hidden;
}

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

.philosophy-section {
    padding: 5rem 4rem;
    background-color: #ffffff;
}

.philosophy-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #1a202c;
    text-align: center;
}

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

.philosophy-item {
    flex: 1;
}

.philosophy-item h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #2563eb;
}

.philosophy-item p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 1rem;
}

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

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

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

.values-content {
    flex: 1;
    padding: 5rem;
    background-color: #f8fafc;
}

.values-content h2 {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #1a202c;
}

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

.values-list li {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 1.5rem;
}

.values-list li strong {
    color: #2563eb;
    font-weight: 700;
}

.team-section {
    padding: 5rem 4rem;
    background-color: #ffffff;
}

.team-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #1a202c;
    text-align: center;
}

.team-section p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #4a5568;
    max-width: 900px;
    margin: 0 auto 1.5rem auto;
    text-align: center;
}

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

.approach-card {
    flex: 1;
    background-color: #f8fafc;
    padding: 2rem;
    border-radius: 12px;
}

.approach-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #2563eb;
}

.approach-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: #4a5568;
    text-align: left;
}

.cta-about-section {
    padding: 5rem 4rem;
    background-color: #2563eb;
    text-align: center;
}

.cta-about-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffffff;
}

.cta-about-section p {
    font-size: 1.1rem;
    color: #dbeafe;
    margin-bottom: 2rem;
}

.cta-about-section .cta-primary {
    background-color: #ffffff;
    color: #2563eb;
}

.cta-about-section .cta-primary:hover {
    background-color: #f1f5f9;
}

.services-header {
    padding: 4rem 4rem 2rem 4rem;
    background-color: #f8fafc;
    text-align: center;
}

.services-header h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: #1a202c;
}

.services-header p {
    font-size: 1.15rem;
    color: #4a5568;
}

.services-detailed {
    background-color: #ffffff;
}

.service-detail-split {
    display: flex;
    align-items: stretch;
    border-bottom: 1px solid #e2e8f0;
}

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

.service-detail-content {
    flex: 1;
    padding: 4rem 5rem;
}

.service-detail-content h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1a202c;
}

.service-detail-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 1.5rem;
}

.service-detail-content h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin: 2rem 0 1rem 0;
    color: #2d3748;
}

.service-detail-content ul {
    list-style: none;
    margin-bottom: 2rem;
}

.service-detail-content ul li {
    font-size: 1rem;
    line-height: 1.7;
    color: #4a5568;
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.8rem;
}

.service-detail-content ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2563eb;
    font-weight: 700;
}

.price-box {
    display: flex;
    align-items: baseline;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
}

.price-label {
    font-size: 1rem;
    color: #4a5568;
    font-weight: 600;
}

.price-value {
    font-size: 2.25rem;
    font-weight: 800;
    color: #2563eb;
}

.service-detail-image {
    flex: 1;
    overflow: hidden;
}

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

.form-section-services {
    padding: 5rem 4rem;
    background-color: #f8fafc;
    text-align: center;
}

.form-section-services h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1a202c;
}

.form-section-services p {
    font-size: 1.1rem;
    color: #4a5568;
    margin-bottom: 3rem;
}

.form-section-services .form-container {
    max-width: 600px;
    margin: 0 auto;
}

.contact-hero {
    padding: 4rem 4rem 2rem 4rem;
    background-color: #f8fafc;
    text-align: center;
}

.contact-hero h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: #1a202c;
}

.contact-hero p {
    font-size: 1.15rem;
    color: #4a5568;
}

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

.contact-details {
    flex: 1;
    padding: 5rem;
    background-color: #ffffff;
}

.contact-details h2 {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 2.5rem;
    color: #1a202c;
}

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

.contact-item h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    color: #2563eb;
}

.contact-item p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #4a5568;
}

.note-text {
    font-size: 0.95rem;
    color: #718096;
    font-style: italic;
}

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

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

.contact-faq {
    padding: 5rem 4rem;
    background-color: #f8fafc;
}

.contact-faq h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #1a202c;
    text-align: center;
}

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

.faq-item {
    flex: 1 1 calc(50% - 1rem);
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 12px;
}

.faq-item h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #2563eb;
}

.faq-item p {
    font-size: 1rem;
    line-height: 1.7;
    color: #4a5568;
}

.contact-cta {
    padding: 5rem 4rem;
    background-color: #2563eb;
    text-align: center;
}

.contact-cta h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffffff;
}

.contact-cta p {
    font-size: 1.1rem;
    color: #dbeafe;
    margin-bottom: 2rem;
}

.contact-cta .cta-primary {
    background-color: #ffffff;
    color: #2563eb;
}

.contact-cta .cta-primary:hover {
    background-color: #f1f5f9;
}

.thanks-section {
    display: flex;
    min-height: 600px;
}

.thanks-content {
    flex: 1;
    padding: 5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #f8fafc;
}

.thanks-content h1 {
    font-size: 2.75rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: #1a202c;
}

.thanks-message {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 2rem;
}

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

.service-confirmation p {
    font-size: 1.05rem;
    color: #1e40af;
    margin-bottom: 0.5rem;
}

.next-steps {
    margin-bottom: 2.5rem;
}

.next-steps h2 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #2d3748;
}

.next-steps ul {
    list-style: none;
}

.next-steps ul li {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #4a5568;
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.8rem;
}

.next-steps ul li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #2563eb;
    font-weight: 700;
}

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

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

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

.while-you-wait {
    padding: 5rem 4rem;
    background-color: #ffffff;
}

.while-you-wait h2 {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 2.5rem;
    color: #1a202c;
    text-align: center;
}

.wait-suggestions {
    display: flex;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.suggestion-card {
    flex: 1;
    background-color: #f8fafc;
    padding: 2.5rem;
    border-radius: 12px;
    text-align: center;
}

.suggestion-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #2563eb;
}

.suggestion-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 1.5rem;
}

.suggestion-card a {
    display: inline-block;
    color: #2563eb;
    font-weight: 600;
    border-bottom: 2px solid #2563eb;
    padding-bottom: 2px;
}

.legal-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 5rem 4rem;
}

.legal-page h1 {
    font-size: 2.75rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: #1a202c;
}

.last-updated {
    font-size: 0.95rem;
    color: #718096;
    margin-bottom: 3rem;
}

.legal-section {
    margin-bottom: 3rem;
}

.legal-section h2 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #2d3748;
}

.legal-section h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin: 1.5rem 0 0.8rem 0;
    color: #4a5568;
}

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

.legal-section ul {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.legal-section ul li {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 0.8rem;
}

.legal-section a {
    color: #2563eb;
    font-weight: 600;
}

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

.important-notice {
    background-color: #fef3c7;
    padding: 1.5rem;
    border-left: 4px solid #f59e0b;
    border-radius: 4px;
    font-weight: 600;
}

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

.cookie-table thead {
    background-color: #f8fafc;
}

.cookie-table th {
    padding: 1rem;
    text-align: left;
    font-weight: 700;
    color: #2d3748;
    border-bottom: 2px solid #e2e8f0;
}

.cookie-table td {
    padding: 1rem;
    color: #4a5568;
    border-bottom: 1px solid #e2e8f0;
}

@media (max-width: 768px) {
    .header-split {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem 2rem;
    }

    .header-right {
        flex-wrap: wrap;
        gap: 1rem;
        justify-content: center;
    }

    .hero-split,
    .mission-split,
    .benefits-split,
    .values-split,
    .about-hero-split,
    .contact-info-split,
    .thanks-section,
    .form-section-split {
        flex-direction: column;
    }

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

    .service-card-split:nth-child(even) {
        flex-direction: column;
    }

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

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

    .philosophy-split,
    .approach-details,
    .wait-suggestions {
        flex-direction: column;
    }

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

    .hero-left,
    .mission-content,
    .benefits-content,
    .values-content,
    .about-content-left,
    .contact-details,
    .thanks-content,
    .service-detail-content {
        padding: 3rem 2rem;
    }

    .hero-left h1,
    .about-content-left h1,
    .thanks-content h1,
    .services-header h1,
    .contact-hero h1 {
        font-size: 2rem;
    }

    .faq-item {
        flex: 1 1 100%;
    }

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

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