* {
    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: #2c3e50;
    background-color: #ffffff;
}

.ad-disclosure {
    background-color: #f8f9fa;
    color: #6c757d;
    text-align: center;
    padding: 0.5rem;
    font-size: 0.85rem;
    border-bottom: 1px solid #e9ecef;
}

.main-nav {
    background-color: #ffffff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.2rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

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

.nav-links a {
    color: #2c3e50;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #3498db;
}

.hero-split {
    display: flex;
    min-height: 600px;
    align-items: center;
    background-color: #f8f9fa;
}

.hero-left {
    flex: 1;
    padding: 4rem 3rem 4rem 8%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-right {
    flex: 1;
    background-color: #e9ecef;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

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

.hero-left h1 {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #1a252f;
}

.hero-left p {
    font-size: 1.2rem;
    color: #5a6c7d;
    margin-bottom: 2rem;
    max-width: 550px;
}

.cta-primary {
    display: inline-block;
    background-color: #3498db;
    color: #ffffff;
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.cta-primary:hover {
    background-color: #2980b9;
}

.cta-secondary {
    display: inline-block;
    background-color: transparent;
    color: #3498db;
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    border: 2px solid #3498db;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 1rem;
}

.cta-secondary:hover {
    background-color: #3498db;
    color: #ffffff;
}

.intro-split {
    display: flex;
    min-height: 500px;
    background-color: #ffffff;
}

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

.intro-image {
    flex: 1;
    background-color: #e9ecef;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

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

.intro-content {
    flex: 1;
    padding: 4rem 8% 4rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.intro-split.reverse .intro-content {
    padding: 4rem 3rem 4rem 8%;
}

.intro-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #1a252f;
}

.intro-content p {
    font-size: 1.1rem;
    color: #5a6c7d;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.reference {
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
}

.reference:hover {
    text-decoration: underline;
}

.benefits-section {
    padding: 5rem 8%;
    background-color: #f8f9fa;
}

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

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

.benefit-card {
    flex: 1;
    background-color: #ffffff;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

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

.benefit-card p {
    color: #5a6c7d;
    line-height: 1.7;
}

.services-split {
    display: flex;
    background-color: #ffffff;
    padding: 5rem 0;
}

.services-content {
    flex: 0 0 35%;
    padding: 2rem 3rem 2rem 8%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

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

.services-content p {
    font-size: 1.1rem;
    color: #5a6c7d;
    line-height: 1.7;
}

.services-list {
    flex: 1;
    padding: 2rem 8% 2rem 3rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.service-item {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid #3498db;
}

.service-item h3 {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
    color: #1a252f;
}

.service-item p {
    color: #5a6c7d;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.service-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #3498db;
    margin-bottom: 1rem;
}

.select-service {
    background-color: #3498db;
    color: #ffffff;
    padding: 0.8rem 1.8rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s ease;
}

.select-service:hover {
    background-color: #2980b9;
}

.testimonial-split {
    display: flex;
    min-height: 500px;
    background-color: #f8f9fa;
}

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

.testimonial-image {
    flex: 1;
    background-color: #e9ecef;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

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

.testimonial-content {
    flex: 1;
    padding: 4rem 8% 4rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.testimonial-split.reverse .testimonial-content {
    padding: 4rem 3rem 4rem 8%;
}

.testimonial-content h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    color: #1a252f;
}

blockquote {
    border-left: 4px solid #3498db;
    padding-left: 1.5rem;
    margin-bottom: 2rem;
}

blockquote p {
    font-size: 1.1rem;
    color: #2c3e50;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 0.5rem;
}

cite {
    font-size: 0.95rem;
    color: #5a6c7d;
    font-style: normal;
    font-weight: 600;
}

.approach-split {
    display: flex;
    min-height: 500px;
    background-color: #ffffff;
}

.approach-content {
    flex: 1;
    padding: 4rem 3rem 4rem 8%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

.approach-content p {
    font-size: 1.1rem;
    color: #5a6c7d;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.approach-image {
    flex: 1;
    background-color: #e9ecef;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

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

.form-section {
    padding: 5rem 8%;
    background-color: #f8f9fa;
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.form-container h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: #1a252f;
    text-align: center;
}

.form-container > p {
    text-align: center;
    color: #5a6c7d;
    margin-bottom: 2.5rem;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 1rem;
    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: #3498db;
}

.form-group textarea {
    resize: vertical;
}

.disclaimer-section {
    padding: 3rem 8%;
    background-color: #fff3cd;
    border-top: 3px solid #ffc107;
    border-bottom: 3px solid #ffc107;
}

.disclaimer-content {
    max-width: 1000px;
    margin: 0 auto;
}

.disclaimer-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #856404;
}

.disclaimer-content p {
    color: #856404;
    line-height: 1.7;
}

.main-footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 3rem 8% 1.5rem;
}

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

.footer-section {
    flex: 1;
}

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

.footer-section p {
    color: #bdc3c7;
    line-height: 1.6;
}

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

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

.footer-section a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #3498db;
}

.references-list {
    list-style-position: inside;
    padding-left: 0;
}

.references-list li {
    margin-bottom: 0.8rem;
    line-height: 1.5;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 1.5rem 2rem;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.15);
    z-index: 1000;
    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;
    line-height: 1.5;
}

.cookie-content a {
    color: #3498db;
    text-decoration: underline;
}

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

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

.cookie-accept {
    background-color: #3498db;
    color: #ffffff;
}

.cookie-accept:hover {
    background-color: #2980b9;
}

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

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

.page-hero {
    background-color: #f8f9fa;
    padding: 5rem 8%;
    text-align: center;
}

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

.page-hero p {
    font-size: 1.3rem;
    color: #5a6c7d;
}

.about-split {
    display: flex;
    min-height: 500px;
    background-color: #ffffff;
}

.about-content {
    flex: 1;
    padding: 4rem 3rem 4rem 8%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

.about-content p {
    font-size: 1.1rem;
    color: #5a6c7d;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.about-image {
    flex: 1;
    background-color: #e9ecef;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

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

.philosophy-section {
    padding: 5rem 8%;
    background-color: #f8f9fa;
}

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

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

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

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

.philosophy-item p {
    color: #5a6c7d;
    line-height: 1.7;
}

.method-split {
    display: flex;
    min-height: 500px;
    background-color: #ffffff;
}

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

.method-image {
    flex: 1;
    background-color: #e9ecef;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

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

.method-content {
    flex: 1;
    padding: 4rem 8% 4rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.method-split.reverse .method-content {
    padding: 4rem 3rem 4rem 8%;
}

.method-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #1a252f;
}

.method-content p {
    font-size: 1.1rem;
    color: #5a6c7d;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.values-section {
    padding: 5rem 8%;
    background-color: #f8f9fa;
}

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

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

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

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

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

.cta-section {
    padding: 5rem 8%;
    background-color: #3498db;
    text-align: center;
}

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

.cta-content p {
    font-size: 1.2rem;
    color: #ecf0f1;
    margin-bottom: 2rem;
}

.cta-section .cta-primary {
    background-color: #ffffff;
    color: #3498db;
}

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

.services-intro-split {
    display: flex;
    min-height: 400px;
    background-color: #ffffff;
}

.services-intro-content {
    flex: 1;
    padding: 4rem 3rem 4rem 8%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.services-intro-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #1a252f;
}

.services-intro-content p {
    font-size: 1.1rem;
    color: #5a6c7d;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.services-intro-image {
    flex: 1;
    background-color: #e9ecef;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

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

.services-detailed {
    padding: 3rem 8%;
    background-color: #f8f9fa;
}

.service-detail-card {
    background-color: #ffffff;
    margin-bottom: 3rem;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

.service-detail-header {
    background-color: #3498db;
    color: #ffffff;
    padding: 2rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.service-detail-header h3 {
    font-size: 1.8rem;
    margin: 0;
}

.service-detail-price {
    font-size: 1.5rem;
    font-weight: 700;
}

.service-detail-split {
    display: flex;
}

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

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

.service-detail-content h4 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #1a252f;
}

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

.service-detail-content ul li {
    color: #5a6c7d;
    margin-bottom: 0.8rem;
    line-height: 1.6;
}

.service-detail-content p {
    color: #5a6c7d;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.select-service-btn {
    background-color: #3498db;
    color: #ffffff;
    padding: 0.9rem 2rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s ease;
}

.select-service-btn:hover {
    background-color: #2980b9;
}

.service-detail-image {
    flex: 0 0 40%;
    background-color: #e9ecef;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

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

.comparison-section {
    padding: 4rem 8%;
    background-color: #ffffff;
}

.comparison-section h2 {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 1.5rem;
    color: #1a252f;
}

.comparison-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.comparison-content p {
    font-size: 1.1rem;
    color: #5a6c7d;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.contact-split {
    display: flex;
    min-height: 500px;
    background-color: #ffffff;
}

.contact-info {
    flex: 1;
    padding: 4rem 3rem 4rem 8%;
}

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

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

.contact-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: #1a252f;
}

.contact-item p {
    color: #5a6c7d;
    line-height: 1.7;
}

.response-time {
    margin-top: 1rem;
    font-style: italic;
    color: #3498db;
}

.contact-image {
    flex: 1;
    background-color: #e9ecef;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

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

.contact-additional {
    padding: 5rem 8%;
    background-color: #f8f9fa;
}

.contact-additional h2 {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #1a252f;
}

.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: 8px;
}

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

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

.thanks-hero {
    background-color: #f8f9fa;
    padding: 5rem 8%;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.thanks-icon {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
}

.thanks-container h1 {
    font-size: 2.8rem;
    color: #1a252f;
    margin-bottom: 1.5rem;
}

.thanks-message {
    font-size: 1.2rem;
    color: #5a6c7d;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.service-confirmation {
    background-color: #d1ecf1;
    border: 1px solid #bee5eb;
    border-radius: 6px;
    padding: 1rem;
    margin-top: 1.5rem;
}

.selected-service-text {
    color: #0c5460;
    font-size: 1.1rem;
    margin: 0;
}

.next-steps-split {
    display: flex;
    min-height: 500px;
    background-color: #ffffff;
}

.next-steps-content {
    flex: 1;
    padding: 4rem 3rem 4rem 8%;
}

.next-steps-content h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    color: #1a252f;
}

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

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

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

.step-text h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #1a252f;
}

.step-text p {
    color: #5a6c7d;
    line-height: 1.7;
}

.next-steps-image {
    flex: 1;
    background-color: #e9ecef;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

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

.thanks-cta {
    padding: 4rem 8%;
    background-color: #f8f9fa;
    text-align: center;
}

.thanks-cta h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: #1a252f;
}

.thanks-cta p {
    font-size: 1.1rem;
    color: #5a6c7d;
    margin-bottom: 2rem;
}

.thanks-links {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.legal-page {
    padding: 3rem 8%;
    background-color: #ffffff;
}

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

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

.last-updated {
    color: #6c757d;
    font-size: 0.95rem;
    margin-bottom: 2.5rem;
}

.legal-container h2 {
    font-size: 1.8rem;
    color: #1a252f;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

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

.legal-container h4 {
    font-size: 1.2rem;
    color: #2c3e50;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
}

.legal-container p {
    color: #5a6c7d;
    line-height: 1.8;
    margin-bottom: 1rem;
}

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

.legal-container li {
    color: #5a6c7d;
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.legal-container a {
    color: #3498db;
    text-decoration: none;
}

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

@media (max-width: 768px) {
    .hero-split,
    .intro-split,
    .testimonial-split,
    .approach-split,
    .about-split,
    .method-split,
    .services-split,
    .contact-split,
    .next-steps-split,
    .services-intro-split,
    .service-detail-split {
        flex-direction: column;
    }

    .hero-left,
    .intro-content,
    .testimonial-content,
    .approach-content,
    .about-content,
    .method-content,
    .services-content,
    .services-list,
    .contact-info,
    .next-steps-content,
    .services-intro-content,
    .service-detail-content {
        padding: 2rem 5%;
    }

    .hero-right,
    .intro-image,
    .testimonial-image,
    .approach-image,
    .about-image,
    .method-image,
    .contact-image,
    .next-steps-image,
    .services-intro-image,
    .service-detail-image {
        min-height: 300px;
    }

    .benefits-grid,
    .philosophy-grid,
    .values-split,
    .faq-grid {
        flex-direction: column;
    }

    .nav-links {
        gap: 1rem;
    }

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

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

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

    .thanks-links {
        flex-direction: column;
        align-items: center;
    }

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