/* Reset and Base Styles */
* {
    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;
}

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

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

ul {
    list-style: none;
}

/* Header */
.header-main {
    background-color: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

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

.ad-disclosure {
    background-color: #fef3cd;
    color: #856404;
    padding: 0.3rem 0.8rem;
    border-radius: 4px;
    font-size: 0.85rem;
    border: 1px solid #ffeeba;
}

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

.nav-main a {
    color: #2c3e50;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-main a:hover {
    color: #2c5f2d;
}

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

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    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: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

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

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

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

/* Hero Split Section */
.hero-split {
    display: flex;
    min-height: 600px;
    background-color: #f8f9fa;
}

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

.hero-left {
    padding: 4rem 3rem 4rem 5rem;
    background-color: #f8f9fa;
}

.hero-left h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

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

.hero-right {
    background-color: #d4e4d7;
    position: relative;
    overflow: hidden;
}

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

/* CTA Buttons */
.cta-primary,
.cta-secondary {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 6px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.cta-primary {
    background-color: #2c5f2d;
    color: #ffffff;
}

.cta-primary:hover {
    background-color: #234d24;
    transform: translateY(-2px);
}

.cta-secondary {
    background-color: transparent;
    color: #2c5f2d;
    border: 2px solid #2c5f2d;
}

.cta-secondary:hover {
    background-color: #2c5f2d;
    color: #ffffff;
}

/* Feature Split */
.feature-split {
    display: flex;
    min-height: 500px;
}

.feature-image,
.feature-content {
    flex: 1;
}

.feature-image {
    background-color: #e8f4ea;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

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

.feature-content {
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.feature-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.feature-content p {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    color: #5a6c7d;
}

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

/* Services Preview */
.services-preview {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

.container-wide {
    max-width: 1400px;
    margin: 0 auto;
}

.services-preview h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.services-grid-split {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 2rem;
}

.service-card {
    flex: 1;
    min-width: 350px;
    display: flex;
    flex-direction: column;
    background-color: #f8f9fa;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-image-wrap {
    height: 250px;
    overflow: hidden;
    background-color: #d4e4d7;
}

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

.service-details {
    padding: 1.8rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

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

.service-details p {
    margin-bottom: 1.5rem;
    color: #5a6c7d;
    flex-grow: 1;
}

.price-tag {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2c5f2d;
    margin-top: auto;
}

.center-cta {
    text-align: center;
    margin-top: 2rem;
}

/* Split Info Section */
.split-info {
    display: flex;
    min-height: 500px;
    background-color: #f8f9fa;
}

.split-content,
.split-image-right {
    flex: 1;
}

.split-content {
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.split-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.split-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #5a6c7d;
}

.benefit-list {
    list-style: none;
    padding-left: 0;
}

.benefit-list li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
    color: #2c3e50;
}

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

.split-image-right {
    background-color: #d4e4d7;
    overflow: hidden;
}

.split-image-right img {
    width: 100%;
    height: 100%;
}

/* Testimonials Split */
.testimonials-split {
    padding: 5rem 2rem;
    background-color: #2c3e50;
    color: #ffffff;
}

.testimonials-split h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #ffffff;
}

.testimonial-row {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.testimonial-box {
    flex: 1;
    min-width: 300px;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid #2c5f2d;
}

.testimonial-box p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    font-weight: 600;
    color: #a8d5aa;
}

/* Form Section */
.form-section {
    padding: 5rem 2rem;
    background-color: #f8f9fa;
}

.form-container-split {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
}

.form-left-info,
.form-right {
    flex: 1;
}

.form-left-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.form-left-info h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.form-left-info p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #5a6c7d;
}

.form-benefits {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-benefit-item {
    font-size: 1.1rem;
    color: #2c5f2d;
    font-weight: 600;
}

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

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.8rem;
    border: 2px solid #e0e0e0;
    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: #2c5f2d;
}

.btn-submit {
    padding: 1rem 2rem;
    background-color: #2c5f2d;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

/* Final Split */
.final-split {
    display: flex;
    min-height: 450px;
}

.final-content,
.final-image {
    flex: 1;
}

.final-content {
    background-color: #2c5f2d;
    color: #ffffff;
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.final-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

.final-content p {
    font-size: 1.1rem;
    line-height: 1.8;
}

.final-image {
    background-color: #d4e4d7;
    overflow: hidden;
}

.final-image img {
    width: 100%;
    height: 100%;
}

/* Footer */
.footer-main {
    background-color: #1a252f;
    color: #ffffff;
    padding: 3rem 2rem 1rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 3rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

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

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

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

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

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

.footer-disclaimer {
    max-width: 1400px;
    margin: 0 auto 2rem;
    padding: 1.5rem;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    font-size: 0.9rem;
    line-height: 1.6;
    color: #ccc;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: #999;
}

/* Page-specific styles */
.page-hero-split {
    display: flex;
    min-height: 400px;
    background-color: #f8f9fa;
}

.hero-text-side,
.hero-image-side {
    flex: 1;
}

.hero-text-side {
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-text-side h1 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.hero-text-side p {
    font-size: 1.1rem;
    color: #5a6c7d;
}

.hero-image-side {
    background-color: #d4e4d7;
    overflow: hidden;
}

.hero-image-side img {
    width: 100%;
    height: 100%;
}

.split-content-section {
    display: flex;
    min-height: 450px;
    padding: 4rem 0;
}

.content-left,
.content-right {
    flex: 1;
}

.content-left {
    padding: 2rem 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.content-left h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.content-left p {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    color: #5a6c7d;
}

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

.content-right img {
    width: 100%;
    height: 100%;
}

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

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

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

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

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

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

.team-split-section {
    display: flex;
    min-height: 450px;
}

.team-image,
.team-content {
    flex: 1;
}

.team-image {
    background-color: #d4e4d7;
    overflow: hidden;
}

.team-image img {
    width: 100%;
    height: 100%;
}

.team-content {
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #ffffff;
}

.team-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.team-content p {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    color: #5a6c7d;
}

.numbers-section {
    padding: 5rem 2rem;
    background-color: #2c5f2d;
    color: #ffffff;
}

.numbers-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

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

.number-box {
    text-align: center;
    padding: 2rem;
}

.big-number {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #a8d5aa;
}

.number-label {
    font-size: 1.1rem;
}

.cta-section-alt {
    padding: 5rem 2rem;
    background-color: #f8f9fa;
}

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

.cta-content-centered h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

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

/* Services page */
.page-intro-split {
    display: flex;
    min-height: 350px;
    background-color: #f8f9fa;
    padding: 3rem 2rem;
}

.intro-content,
.intro-image {
    flex: 1;
}

.intro-content {
    padding: 2rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

.intro-content p {
    font-size: 1.1rem;
    color: #5a6c7d;
}

.intro-image {
    background-color: #d4e4d7;
    overflow: hidden;
    border-radius: 8px;
}

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

.service-detail-split {
    display: flex;
    min-height: 500px;
    padding: 3rem 0;
}

.service-detail-image,
.service-detail-content {
    flex: 1;
}

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

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

.service-detail-content {
    padding: 3rem 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-detail-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.service-detail-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #5a6c7d;
}

.service-features {
    list-style: none;
    margin-bottom: 2rem;
}

.service-features li {
    padding: 0.6rem 0;
    padding-left: 1.8rem;
    position: relative;
    color: #2c3e50;
}

.service-features li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #2c5f2d;
    font-size: 1.5rem;
    line-height: 1;
}

.service-pricing {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background-color: #e8f4ea;
    border-radius: 6px;
    margin-top: auto;
}

.price-label {
    font-weight: 600;
    color: #2c3e50;
}

.price-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c5f2d;
}

.services-cta-section {
    padding: 5rem 2rem;
    background-color: #2c3e50;
}

.cta-box-centered {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    color: #ffffff;
}

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

.cta-box-centered p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

/* Contact page */
.contact-split-section {
    display: flex;
    min-height: 600px;
    padding: 4rem 2rem;
    gap: 4rem;
}

.contact-info-side,
.contact-details-side {
    flex: 1;
}

.contact-info-side h1 {
    font-size: 2.8rem;
    margin-bottom: 2rem;
    color: #2c3e50;
}

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

.contact-block h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c5f2d;
}

.contact-block p {
    color: #5a6c7d;
    line-height: 1.8;
}

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

.office-hours-box,
.location-box,
.address-box {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
}

.office-hours-box h2,
.location-box h2,
.address-box h2 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid #e0e0e0;
}

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

.time {
    color: #5a6c7d;
}

.disclaimer-section {
    padding: 4rem 2rem;
    background-color: #f8f9fa;
}

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

.disclaimer-section h2,
.disclaimer-section h3 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

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

/* Thanks page */
.thanks-section {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    background-color: #f8f9fa;
}

.thanks-container {
    max-width: 800px;
    text-align: center;
    background-color: #ffffff;
    padding: 4rem 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

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

.thanks-container h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

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

.service-confirmation {
    background-color: #e8f4ea;
    padding: 1rem;
    border-radius: 6px;
    margin-bottom: 2rem;
    font-weight: 600;
    color: #2c5f2d;
}

.next-steps {
    margin: 3rem 0;
    text-align: left;
}

.next-steps h2 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    text-align: center;
    color: #2c3e50;
}

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

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

.step-number {
    width: 40px;
    height: 40px;
    background-color: #2c5f2d;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.step-text {
    flex: 1;
    color: #5a6c7d;
    line-height: 1.6;
    padding-top: 0.5rem;
}

.thanks-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

/* Legal pages */
.legal-page {
    padding: 4rem 2rem;
    background-color: #ffffff;
}

.legal-page h1 {
    font-size: 2.8rem;
    margin-bottom: 2rem;
    color: #2c3e50;
}

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

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

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

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

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

.legal-page ul li {
    list-style: disc;
    margin-bottom: 0.5rem;
    color: #5a6c7d;
    line-height: 1.6;
}

.last-updated {
    margin-top: 3rem;
    font-style: italic;
    color: #999;
}

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

.cookies-table thead {
    background-color: #f8f9fa;
}

.cookies-table th,
.cookies-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #e0e0e0;
}

.cookies-table th {
    font-weight: 600;
    color: #2c3e50;
}

.cookies-table td {
    color: #5a6c7d;
}

/* Responsive Design */
@media (max-width: 968px) {
    .hero-split,
    .feature-split,
    .split-info,
    .split-content-section,
    .team-split-section,
    .service-detail-split,
    .page-intro-split,
    .page-hero-split,
    .final-split,
    .contact-split-section,
    .form-container-split {
        flex-direction: column;
    }

    .hero-left,
    .hero-right,
    .feature-image,
    .feature-content,
    .split-content,
    .split-image-right,
    .content-left,
    .content-right,
    .team-image,
    .team-content,
    .service-detail-image,
    .service-detail-content,
    .intro-content,
    .intro-image,
    .hero-text-side,
    .hero-image-side,
    .final-content,
    .final-image,
    .contact-info-side,
    .contact-details-side,
    .form-left-info,
    .form-right {
        min-height: 400px;
    }

    .hero-left {
        padding: 3rem 2rem;
    }

    .container-header {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-main {
        gap: 1rem;
    }

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

    .services-grid-split {
        flex-direction: column;
    }

    .service-card {
        min-width: 100%;
    }
}

@media (max-width: 640px) {
    .hero-left h1 {
        font-size: 2rem;
    }

    .hero-left p {
        font-size: 1rem;
    }

    .feature-content h2,
    .split-content h2,
    .content-left h2,
    .team-content h2,
    .service-detail-content h2 {
        font-size: 1.8rem;
    }

    .services-preview h2,
    .testimonials-split h2,
    .values-section h2,
    .numbers-section h2 {
        font-size: 2rem;
    }

    .big-number {
        font-size: 2.5rem;
    }
}