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

:root {
    --primary-color: #2c5f2d;
    --secondary-color: #97bc62;
    --dark-color: #1a1a2e;
    --light-color: #f8f9fa;
    --accent-color: #c7956d;
    --text-dark: #2d2d2d;
    --text-light: #666666;
    --border-color: #e0e0e0;
    --white: #ffffff;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
}

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

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

.main-nav {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 70px;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
    text-decoration: none;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-color);
}

.hero-section {
    display: flex;
    flex-direction: column-reverse;
    min-height: 500px;
    background-color: var(--light-color);
}

.hero-content {
    padding: 60px 20px;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.hero-section h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.hero-image {
    width: 100%;
    height: 400px;
    overflow: hidden;
}

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

.cta-primary,
.cta-secondary {
    display: inline-block;
    padding: 16px 40px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 5px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.cta-primary {
    background-color: var(--primary-color);
    color: var(--white);
}

.cta-primary:hover {
    background-color: #234d24;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(44,95,45,0.3);
}

.cta-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.cta-secondary:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.intro-section {
    padding: 80px 20px;
    background-color: var(--white);
}

.intro-section h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
}

.intro-section p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 1.2rem;
}

.dark-bg {
    background-color: var(--dark-color);
    color: var(--white);
}

.light-bg {
    background-color: var(--light-color);
}

.dark-accent {
    background-color: var(--accent-color);
    color: var(--white);
}

.problem-section {
    padding: 80px 20px;
}

.split-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.split-text h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.problem-list {
    list-style: none;
    margin-top: 2rem;
}

.problem-list li {
    padding-left: 2rem;
    margin-bottom: 1.5rem;
    position: relative;
    font-size: 1.1rem;
    line-height: 1.6;
}

.problem-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
    font-size: 1.4rem;
}

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

.solution-section {
    padding: 80px 20px;
    background-color: var(--white);
}

.solution-section h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    color: var(--dark-color);
}

.solution-section p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.trust-section {
    padding: 80px 20px;
}

.section-title-center {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--dark-color);
}

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

.trust-card {
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.trust-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.trust-card p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-light);
}

.testimonial-section {
    padding: 80px 20px;
}

.testimonial {
    border-left: 4px solid var(--white);
    padding-left: 2rem;
}

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

.testimonial cite {
    font-style: normal;
    font-weight: 600;
    font-size: 1.1rem;
}

.services-section {
    padding: 80px 20px;
    background-color: var(--white);
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.services-intro {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

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

.service-item {
    background-color: var(--light-color);
    padding: 2.5rem;
    border-radius: 8px;
    border-left: 5px solid var(--primary-color);
}

.service-header {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.service-header h3 {
    font-size: 1.6rem;
    color: var(--dark-color);
}

.price {
    font-size: 1.4rem;
    font-weight: bold;
    color: var(--primary-color);
}

.service-item p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.service-cta {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.service-cta:hover {
    background-color: #234d24;
    transform: translateX(5px);
}

.cta-break {
    padding: 80px 20px;
    background-color: var(--secondary-color);
    text-align: center;
}

.cta-break h2 {
    font-size: 2.3rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.cta-break p {
    font-size: 1.2rem;
    color: var(--white);
    margin-bottom: 2rem;
}

.process-section {
    padding: 80px 20px;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.step {
    position: relative;
    padding-left: 100px;
}

.step-number {
    position: absolute;
    left: 0;
    top: 0;
    width: 70px;
    height: 70px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
}

.step h3 {
    font-size: 1.6rem;
    margin-bottom: 0.8rem;
    color: var(--dark-color);
}

.step p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-light);
}

.visual-showcase {
    padding: 80px 20px;
}

.section-title-light {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--white);
    text-align: center;
}

.showcase-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.showcase-item {
    position: relative;
}

.showcase-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
}

.showcase-item p {
    margin-top: 0.8rem;
    font-size: 1.05rem;
    color: var(--light-color);
}

.form-section {
    padding: 80px 20px;
    background-color: var(--light-color);
}

.form-section h2 {
    font-size: 2.3rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
    text-align: center;
}

.form-intro {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

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

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--border-color);
    border-radius: 5px;
    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: var(--primary-color);
}

.btn-submit {
    width: 100%;
    padding: 16px;
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background-color: #234d24;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(44,95,45,0.3);
}

.main-footer {
    background-color: var(--dark-color);
    color: var(--white);
    padding: 60px 20px 20px;
}

.footer-grid {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    margin-bottom: 2rem;
}

.footer-col h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.footer-col p {
    line-height: 1.6;
    color: var(--light-color);
}

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

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

.footer-col ul li a {
    color: var(--light-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: var(--secondary-color);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 2rem;
    text-align: center;
    color: var(--light-color);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--dark-color);
    color: var(--white);
    padding: 20px;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
    z-index: 2000;
    display: none;
}

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

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

.cookie-content p {
    margin: 0;
    line-height: 1.6;
}

.cookie-content a {
    color: var(--secondary-color);
    text-decoration: underline;
}

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

.cookie-btn {
    padding: 10px 25px;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-btn.accept {
    background-color: var(--primary-color);
    color: var(--white);
}

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

.cookie-btn.reject {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.cookie-btn.reject:hover {
    background-color: var(--white);
    color: var(--dark-color);
}

.page-hero {
    padding: 80px 20px;
    background-color: var(--light-color);
    text-align: center;
}

.page-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.page-subtitle {
    font-size: 1.3rem;
    color: var(--text-light);
}

.about-story {
    padding: 80px 20px;
}

.about-story h2 {
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
}

.about-story p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.values-section {
    padding: 80px 20px;
}

.values-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.value-card {
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.value-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.value-card p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-light);
}

.team-section {
    padding: 80px 20px;
    background-color: var(--white);
}

.team-intro {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

.team-grid {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.team-member {
    text-align: center;
}

.member-photo {
    width: 200px;
    height: 200px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
}

.member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-member h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.member-role {
    font-size: 1.1rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.team-member p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.approach-section {
    padding: 80px 20px;
}

.approach-section h2 {
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.approach-section p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--light-color);
    margin-bottom: 1.5rem;
}

.stats-section {
    padding: 80px 20px;
    background-color: var(--white);
}

.stats-grid {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

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

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-item p {
    font-size: 1.1rem;
    color: var(--text-light);
}

.cta-section {
    padding: 80px 20px;
    background-color: var(--secondary-color);
    text-align: center;
}

.cta-section h2 {
    font-size: 2.3rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.cta-section p {
    font-size: 1.2rem;
    color: var(--white);
    margin-bottom: 2rem;
}

.services-detail {
    padding: 80px 20px;
}

.service-detail-item {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-bottom: 5rem;
    padding-bottom: 5rem;
    border-bottom: 2px solid var(--border-color);
}

.service-detail-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.service-detail-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.price-large {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.service-detail-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.service-detail-content h3 {
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

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

.service-checklist li {
    padding-left: 2rem;
    margin-bottom: 0.8rem;
    position: relative;
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--text-light);
}

.service-checklist li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.3rem;
}

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

.warranty-section {
    padding: 80px 20px;
}

.warranty-section h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
}

.warranty-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 1.2rem;
}

.faq-section {
    padding: 80px 20px;
    background-color: var(--white);
}

.faq-grid {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.faq-item h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.faq-item p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-light);
}

.services-cta {
    padding: 80px 20px;
    text-align: center;
}

.services-cta h2 {
    font-size: 2.3rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.services-cta p {
    font-size: 1.2rem;
    color: var(--white);
    margin-bottom: 2rem;
}

.contact-info-section {
    padding: 80px 20px;
}

.contact-grid {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.contact-info-box h2,
.contact-map h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--dark-color);
}

.contact-detail {
    margin-bottom: 2rem;
}

.contact-detail h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--primary-color);
}

.contact-detail p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-light);
}

.contact-detail a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.contact-detail a:hover {
    text-decoration: underline;
}

.contact-note {
    background-color: var(--light-color);
    padding: 1.5rem;
    border-radius: 5px;
    margin-top: 2rem;
}

.contact-note p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-dark);
}

.map-placeholder {
    position: relative;
}

.map-placeholder img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
}

.map-note {
    margin-top: 1rem;
    font-size: 1rem;
    color: var(--text-light);
}

.contact-process {
    padding: 80px 20px;
}

.contact-process h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    color: var(--dark-color);
}

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

.process-step-contact {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.process-step-contact h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.process-step-contact p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-light);
}

.area-section {
    padding: 80px 20px;
    background-color: var(--white);
}

.area-intro {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

.area-list {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    margin-bottom: 2rem;
}

.area-column h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.area-column ul {
    list-style: none;
}

.area-column ul li {
    padding-left: 1.5rem;
    margin-bottom: 0.8rem;
    position: relative;
    font-size: 1.05rem;
    color: var(--text-light);
}

.area-column ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
    font-size: 1.5rem;
}

.area-note {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-dark);
    font-style: italic;
    margin-top: 2rem;
}

.contact-faq-section {
    padding: 80px 20px;
}

.contact-faq-section h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    color: var(--white);
}

.faq-simple {
    margin-bottom: 2rem;
}

.faq-simple h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.faq-simple p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--light-color);
}

.cta-contact-section {
    padding: 80px 20px;
    background-color: var(--white);
    text-align: center;
}

.cta-contact-section h2 {
    font-size: 2.3rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.cta-contact-section p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.thanks-section {
    padding: 100px 20px;
    min-height: 60vh;
}

.thanks-content {
    text-align: center;
}

.thanks-content h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.thanks-message {
    font-size: 1.3rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 3rem;
}

.thanks-service {
    background-color: var(--light-color);
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 3rem;
    font-size: 1.1rem;
    color: var(--text-dark);
}

.thanks-next h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
}

.thanks-steps {
    list-style: none;
    margin-bottom: 3rem;
}

.thanks-steps li {
    padding-left: 2rem;
    margin-bottom: 1rem;
    position: relative;
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-light);
    text-align: left;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.thanks-steps li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.3rem;
}

.thanks-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.legal-content {
    padding: 60px 20px;
}

.legal-content h2 {
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.legal-content h3 {
    font-size: 1.4rem;
    margin-top: 2rem;
    margin-bottom: 0.8rem;
    color: var(--dark-color);
}

.legal-content p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 1rem;
}

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

.legal-content ul li {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 0.8rem;
}

.legal-content a {
    color: var(--primary-color);
    text-decoration: underline;
}

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

.cookies-table th,
.cookies-table td {
    padding: 12px;
    text-align: left;
    border: 1px solid var(--border-color);
}

.cookies-table th {
    background-color: var(--light-color);
    font-weight: 600;
    color: var(--dark-color);
}

.cookies-table td {
    font-size: 0.95rem;
    color: var(--text-light);
}

@media (min-width: 768px) {
    .hero-section {
        flex-direction: row;
        align-items: center;
    }

    .hero-content {
        flex: 1;
        text-align: left;
        padding: 80px 40px;
    }

    .hero-image {
        flex: 1;
        height: 600px;
    }

    .split-content {
        flex-direction: row;
        align-items: center;
    }

    .split-text,
    .split-image {
        flex: 1;
    }

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

    .service-detail-item {
        flex-direction: row;
        align-items: center;
    }

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

    .trust-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .trust-card {
        flex: 1 1 calc(50% - 1rem);
    }

    .team-grid {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }

    .team-member {
        flex: 1 1 calc(50% - 1.5rem);
    }

    .stats-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .stat-item {
        flex: 1 1 calc(50% - 1.25rem);
    }

    .showcase-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .showcase-item {
        flex: 1 1 calc(50% - 1rem);
    }

    .footer-grid {
        flex-direction: row;
        justify-content: space-between;
    }

    .footer-col {
        flex: 1;
    }

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

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

    .contact-info-box,
    .contact-map {
        flex: 1;
    }

    .area-list {
        flex-direction: row;
    }

    .area-column {
        flex: 1;
    }

    .values-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .value-card {
        flex: 1 1 calc(50% - 1rem);
    }

    .thanks-actions {
        flex-direction: row;
        justify-content: center;
    }
}

@media (min-width: 1024px) {
    .nav-menu {
        gap: 2.5rem;
    }

    .hero-section h1 {
        font-size: 3.5rem;
    }

    .trust-card {
        flex: 1 1 calc(33.333% - 1.5rem);
    }

    .team-member {
        flex: 1 1 calc(25% - 2.25rem);
    }

    .stat-item {
        flex: 1 1 calc(25% - 2rem);
    }

    .showcase-item {
        flex: 1 1 calc(25% - 1.5rem);
    }

    .value-card {
        flex: 1 1 calc(25% - 1.5rem);
    }
}
