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

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

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;
    object-fit: cover;
}

a {
    color: #2d5016;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #4a7c2a;
}

h1, h2, h3, h4 {
    font-weight: 600;
    line-height: 1.2;
    color: #1a1a1a;
}

h1 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2.2rem;
    margin-bottom: 1.2rem;
}

h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
}

h4 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
}

p {
    margin-bottom: 1rem;
}

ul, ol {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.navbar-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-left .logo {
    font-size: 1.6rem;
    font-weight: 700;
    color: #2d5016;
}

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

.nav-right a {
    font-size: 1rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.ad-disclosure {
    font-size: 0.75rem;
    color: #666;
    padding: 0.4rem 0.8rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    background-color: #f9f9f9;
}

.hero-split {
    display: flex;
    min-height: 85vh;
    background-color: #fafafa;
}

.hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 5rem 7%;
    background-color: #f5f8f3;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: #2d5016;
}

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

.hero-image {
    flex: 1;
    background-color: #e8efe3;
    position: relative;
    overflow: hidden;
}

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

.btn-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #2d5016;
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 6px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background-color: #4a7c2a;
    transform: translateY(-2px);
    color: #ffffff;
}

.btn-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: transparent;
    color: #2d5016;
    font-size: 1.1rem;
    font-weight: 600;
    border: 2px solid #2d5016;
    border-radius: 6px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-secondary:hover {
    background-color: #2d5016;
    color: #ffffff;
}

.intro-split-reverse {
    display: flex;
    flex-direction: row-reverse;
    min-height: 60vh;
}

.intro-image {
    flex: 1;
    background-color: #e8efe3;
    position: relative;
    overflow: hidden;
}

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

.intro-text {
    flex: 1;
    padding: 5rem 7%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.intro-text h2 {
    color: #2d5016;
    margin-bottom: 1.5rem;
}

.intro-text p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 1.2rem;
}

.services-section {
    padding: 5rem 5%;
    background-color: #ffffff;
}

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

.services-header h2 {
    color: #2d5016;
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

.services-header p {
    font-size: 1.2rem;
    color: #666;
}

.service-item-split {
    display: flex;
    margin-bottom: 5rem;
    gap: 4rem;
    align-items: center;
}

.service-item-split-reverse {
    display: flex;
    flex-direction: row-reverse;
    margin-bottom: 5rem;
    gap: 4rem;
    align-items: center;
}

.service-text {
    flex: 1;
}

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

.service-text p {
    font-size: 1.05rem;
    color: #555;
    margin-bottom: 1.5rem;
}

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

.feature-list li {
    padding: 0.5rem 0;
    padding-left: 1.8rem;
    position: relative;
    font-size: 1rem;
    color: #444;
}

.feature-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2d5016;
    font-weight: bold;
    font-size: 1.2rem;
}

.service-price {
    margin-top: 1.5rem;
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
}

.price {
    font-size: 2rem;
    font-weight: 700;
    color: #2d5016;
}

.price-note {
    font-size: 1rem;
    color: #777;
}

.service-image {
    flex: 1;
    background-color: #e8efe3;
    border-radius: 8px;
    overflow: hidden;
}

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

.booking-section-centered {
    padding: 6rem 5%;
    background-color: #f5f8f3;
}

.booking-container {
    max-width: 700px;
    margin: 0 auto;
}

.booking-container h2 {
    text-align: center;
    color: #2d5016;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.booking-container > p {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 3rem;
}

.booking-form {
    background-color: #ffffff;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.form-row {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    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: #2d5016;
}

.btn-submit {
    width: 100%;
    padding: 1.2rem;
    background-color: #2d5016;
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-submit:hover {
    background-color: #4a7c2a;
    transform: translateY(-2px);
}

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

.trust-text {
    flex: 1.2;
}

.trust-text h2 {
    color: #2d5016;
    margin-bottom: 1.5rem;
}

.trust-text p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 1.2rem;
}

.trust-stats {
    flex: 0.8;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
    padding: 1.5rem;
    background-color: #f5f8f3;
    border-radius: 8px;
}

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

.stat-label {
    font-size: 1rem;
    color: #666;
}

.footer {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 3rem 5% 2rem;
}

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

.footer-section {
    flex: 1;
}

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

.footer-section p {
    color: #ccc;
    font-size: 0.95rem;
}

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

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

.footer-section ul li a {
    color: #ccc;
    transition: color 0.3s ease;
}

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

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

.footer-bottom p {
    color: #999;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.disclaimer {
    font-size: 0.85rem;
    color: #888;
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 1.5rem 5%;
    z-index: 1000;
    box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.2);
}

.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 {
    flex: 1;
    margin: 0;
    font-size: 0.95rem;
    color: #ddd;
}

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

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 0.8rem 1.5rem;
    font-size: 0.95rem;
    font-weight: 600;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-cookie-accept {
    background-color: #2d5016;
    color: #ffffff;
}

.btn-cookie-accept:hover {
    background-color: #4a7c2a;
}

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

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

.page-hero-split {
    display: flex;
    min-height: 50vh;
    background-color: #fafafa;
}

.page-hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem 7%;
    background-color: #f5f8f3;
}

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

.page-hero-content p {
    font-size: 1.2rem;
    color: #666;
}

.page-hero-image {
    flex: 1;
    background-color: #e8efe3;
    overflow: hidden;
}

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

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

.story-text {
    flex: 1;
}

.story-text h2 {
    color: #2d5016;
    margin-bottom: 1.5rem;
}

.story-text p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 1.2rem;
}

.story-image {
    flex: 1;
    background-color: #e8efe3;
    border-radius: 8px;
    overflow: hidden;
}

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 400px;
}

.values-centered {
    padding: 5rem 5%;
    background-color: #f5f8f3;
    text-align: center;
}

.values-centered h2 {
    color: #2d5016;
    font-size: 2.8rem;
    margin-bottom: 3rem;
}

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

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

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

.value-card p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
}

.team-split-reverse {
    display: flex;
    flex-direction: row-reverse;
    padding: 5rem 5%;
    gap: 4rem;
    align-items: center;
    background-color: #ffffff;
}

.team-image {
    flex: 1;
    background-color: #e8efe3;
    border-radius: 8px;
    overflow: hidden;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 400px;
}

.team-text {
    flex: 1;
}

.team-text h2 {
    color: #2d5016;
    margin-bottom: 1.5rem;
}

.team-text p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 1.2rem;
}

.approach-split {
    display: flex;
    padding: 5rem 5%;
    gap: 4rem;
    align-items: center;
    background-color: #f5f8f3;
}

.approach-text {
    flex: 1;
}

.approach-text h2 {
    color: #2d5016;
    margin-bottom: 1.5rem;
}

.approach-text p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 1.2rem;
}

.approach-image {
    flex: 1;
    background-color: #e8efe3;
    border-radius: 8px;
    overflow: hidden;
}

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

.cta-full {
    padding: 5rem 5%;
    background-color: #2d5016;
    text-align: center;
}

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

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

.cta-content .btn-primary {
    background-color: #ffffff;
    color: #2d5016;
}

.cta-content .btn-primary:hover {
    background-color: #f0f0f0;
    color: #2d5016;
}

.page-header-centered {
    padding: 4rem 5%;
    text-align: center;
    background-color: #f5f8f3;
}

.page-header-centered h1 {
    color: #2d5016;
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-header-centered p {
    font-size: 1.2rem;
    color: #666;
}

.services-detail {
    padding: 3rem 5%;
    background-color: #ffffff;
}

.service-detail-item {
    margin-bottom: 5rem;
    background-color: #fafafa;
    border-radius: 8px;
    overflow: hidden;
}

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

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

.service-detail-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.service-detail-header h2 {
    color: #2d5016;
    font-size: 2.2rem;
}

.price-badge {
    background-color: #2d5016;
    color: #ffffff;
    padding: 0.8rem 1.5rem;
    border-radius: 6px;
    font-size: 1.3rem;
    font-weight: 700;
}

.service-detail-body {
    display: flex;
    gap: 3rem;
    align-items: flex-start;
}

.service-detail-text {
    flex: 1.3;
}

.service-detail-text p {
    font-size: 1.05rem;
    color: #555;
    margin-bottom: 1.2rem;
}

.service-detail-text h3 {
    color: #2d5016;
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

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

.detail-list li {
    padding: 0.6rem 0;
    padding-left: 1.8rem;
    position: relative;
    font-size: 1rem;
    color: #444;
}

.detail-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #2d5016;
    font-weight: bold;
}

.service-meta {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #ddd;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.meta-item {
    font-size: 1rem;
    color: #555;
}

.meta-item strong {
    color: #2d5016;
}

.service-detail-image {
    flex: 0.7;
    background-color: #e8efe3;
    border-radius: 8px;
    overflow: hidden;
}

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

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

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

.contact-info h1 {
    color: #2d5016;
    margin-bottom: 1.5rem;
}

.contact-info > p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 3rem;
}

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

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

.contact-item p {
    font-size: 1rem;
    color: #555;
    line-height: 1.7;
}

.contact-item .no-link {
    color: #555;
}

.contact-item .note {
    font-size: 0.9rem;
    color: #777;
    font-style: italic;
    margin-top: 0.5rem;
}

.contact-map {
    flex: 1;
    background-color: #e8efe3;
    position: relative;
}

.map-placeholder {
    width: 100%;
    height: 100%;
    position: relative;
}

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

.map-overlay {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    right: 2rem;
    background-color: rgba(255, 255, 255, 0.95);
    padding: 1.5rem;
    border-radius: 8px;
}

.map-overlay p {
    margin: 0;
    font-size: 1.1rem;
    color: #2d5016;
    font-weight: 600;
}

.faq-section {
    padding: 5rem 5%;
    background-color: #f5f8f3;
}

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

.faq-container {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.faq-item {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

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

.faq-item p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
}

.thanks-centered {
    padding: 5rem 5%;
    background-color: #f5f8f3;
    min-height: 60vh;
}

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

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

.thanks-content h1 {
    color: #2d5016;
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
}

.thanks-message {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 3rem;
}

.selected-service-info {
    margin-bottom: 3rem;
}

.booking-summary {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    text-align: left;
}

.booking-summary h3 {
    color: #2d5016;
    margin-bottom: 1.5rem;
    text-align: center;
}

.booking-summary p {
    font-size: 1.05rem;
    color: #555;
    margin-bottom: 0.8rem;
}

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

.next-steps h2 {
    color: #2d5016;
    font-size: 2rem;
    margin-bottom: 2rem;
}

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

.step-item {
    flex: 1;
    min-width: 220px;
    max-width: 280px;
    background-color: #ffffff;
    padding: 2rem 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    text-align: center;
}

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

.step-item h3 {
    color: #2d5016;
    margin-bottom: 0.8rem;
    font-size: 1.3rem;
}

.step-item p {
    font-size: 0.95rem;
    color: #666;
}

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

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

.why-text {
    flex: 1;
}

.why-text h2 {
    color: #2d5016;
    margin-bottom: 1.5rem;
}

.why-text p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 1.5rem;
}

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

.benefits-list li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1.05rem;
    color: #444;
}

.benefits-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2d5016;
    font-weight: bold;
    font-size: 1.3rem;
}

.why-image {
    flex: 1;
    background-color: #e8efe3;
    border-radius: 8px;
    overflow: hidden;
}

.why-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 400px;
}

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

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

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

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

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

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

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

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

.legal-content a {
    color: #2d5016;
    text-decoration: underline;
}

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

.no-link {
    cursor: default;
}

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

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

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

.cookie-table td {
    padding: 1rem;
    border-bottom: 1px solid #eee;
    color: #555;
}

.cookie-table tbody tr:hover {
    background-color: #fafafa;
}

@media (max-width: 1024px) {
    .hero-split,
    .intro-split-reverse,
    .service-item-split,
    .service-item-split-reverse,
    .trust-split,
    .story-split,
    .team-split-reverse,
    .approach-split,
    .contact-split,
    .why-choose-split,
    .page-hero-split {
        flex-direction: column;
    }

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

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

    h1 {
        font-size: 2.2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

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

    .services-header h2 {
        font-size: 2.2rem;
    }

    .nav-right {
        gap: 1rem;
        flex-wrap: wrap;
    }

    .ad-disclosure {
        font-size: 0.7rem;
        padding: 0.3rem 0.6rem;
    }
}

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

    .nav-right {
        flex-direction: column;
        gap: 0.8rem;
        align-items: center;
    }

    .hero-content,
    .intro-text,
    .trust-text,
    .story-text,
    .team-text,
    .approach-text,
    .contact-info {
        padding: 3rem 5%;
    }

    .form-row {
        flex-direction: column;
        gap: 0;
    }

    .cookie-content {
        flex-direction: column;
        gap: 1rem;
    }

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

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

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

    .service-detail-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

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

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

    .thanks-actions .btn-primary,
    .thanks-actions .btn-secondary {
        width: 100%;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.6rem;
    }

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