:root {
    --primary-color: #2d5f3f;
    --secondary-color: #5a8c6a;
    --accent-color: #d4a574;
    --text-dark: #1a1a1a;
    --text-medium: #4a4a4a;
    --text-light: #6a6a6a;
    --bg-light: #f8f9f7;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 4px 20px rgba(0, 0, 0, 0.12);
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--bg-white);
    font-size: 16px;
}

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

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

ul {
    list-style: none;
}

.main-nav {
    background-color: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow);
}

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

.logo {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
}

.nav-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--primary-color);
    transition: all 0.3s ease;
}

.nav-menu {
    position: fixed;
    top: 70px;
    right: -100%;
    width: 250px;
    height: calc(100vh - 70px);
    background-color: var(--bg-white);
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;
    display: flex;
    flex-direction: column;
    padding: 2rem 0;
}

.nav-menu.active {
    right: 0;
}

.nav-menu li {
    padding: 0.8rem 1.5rem;
}

.nav-menu a {
    color: var(--text-dark);
    font-weight: 500;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--text-dark);
    color: var(--bg-white);
    padding: 1.5rem;
    z-index: 2000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
}

.cookie-banner.hidden {
    display: none;
}

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

.cookie-content p {
    font-size: 0.95rem;
    line-height: 1.5;
}

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

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

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

.btn-cookie-accept:hover {
    background-color: var(--secondary-color);
}

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

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

.hero-split {
    display: flex;
    flex-direction: column;
    min-height: 85vh;
}

.hero-text {
    padding: 3rem 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: var(--bg-light);
}

.hero-text h1 {
    font-size: 2.2rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.hero-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-medium);
    margin-bottom: 2rem;
}

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

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

.btn-primary,
.btn-secondary,
.btn-outline,
.btn-primary-large {
    display: inline-block;
    padding: 0.9rem 2rem;
    border-radius: 6px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary,
.btn-primary-large {
    background-color: var(--primary-color);
    color: var(--bg-white);
}

.btn-primary:hover,
.btn-primary-large:hover {
    background-color: var(--secondary-color);
    box-shadow: var(--shadow-hover);
}

.btn-primary-large {
    padding: 1.1rem 2.5rem;
    font-size: 1.1rem;
}

.btn-secondary {
    background-color: var(--accent-color);
    color: var(--text-dark);
}

.btn-secondary:hover {
    background-color: #c89560;
    box-shadow: var(--shadow-hover);
}

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

.btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--bg-white);
}

.intro-asymmetric {
    padding: 4rem 1.5rem;
}

.intro-content {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.intro-block-left h2 {
    font-size: 1.9rem;
    line-height: 1.3;
    margin-bottom: 1.2rem;
    color: var(--primary-color);
}

.intro-block-left p {
    font-size: 1.05rem;
    color: var(--text-medium);
    line-height: 1.8;
}

.intro-block-right img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 8px;
}

.intro-caption {
    font-size: 0.9rem;
    font-style: italic;
    color: var(--text-light);
    margin-top: 0.8rem;
}

.philosophy-section {
    background-color: var(--bg-light);
    padding: 4rem 1.5rem;
}

.philosophy-wrapper {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

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

.philosophy-text h3 {
    font-size: 1.7rem;
    margin-bottom: 1.2rem;
    color: var(--primary-color);
}

.philosophy-text p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-medium);
    margin-bottom: 1.3rem;
}

.services-preview {
    padding: 4rem 1.5rem;
}

.services-preview h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

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

.service-card {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 2rem;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.service-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-4px);
}

.service-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1.2rem;
}

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

.service-card h4 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: var(--primary-color);
}

.service-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-medium);
    margin-bottom: 1rem;
}

.service-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin: 1.5rem 0;
}

.btn-service-select {
    width: 100%;
    padding: 0.8rem;
    background-color: var(--secondary-color);
    color: var(--bg-white);
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-service-select:hover {
    background-color: var(--primary-color);
}

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

.process-timeline {
    background-color: var(--bg-light);
    padding: 4rem 1.5rem;
}

.process-timeline h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

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

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

.timeline-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent-color);
    min-width: 50px;
}

.timeline-content h5 {
    font-size: 1.3rem;
    margin-bottom: 0.6rem;
    color: var(--primary-color);
}

.timeline-content p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-medium);
}

.testimonials-section {
    padding: 4rem 1.5rem;
}

.testimonials-header h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

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

.testimonial-card {
    background-color: var(--bg-light);
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid var(--accent-color);
}

.testimonial-text {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-medium);
    margin-bottom: 1.2rem;
    font-style: italic;
}

.testimonial-author {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-color);
}

.form-section {
    background-color: var(--bg-light);
    padding: 4rem 1.5rem;
}

.form-wrapper {
    max-width: 600px;
    margin: 0 auto;
}

.form-intro {
    text-align: center;
    margin-bottom: 2.5rem;
}

.form-intro h2 {
    font-size: 1.9rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.form-intro p {
    font-size: 1rem;
    color: var(--text-medium);
}

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

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

.form-group label {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.9rem;
    border: 1px solid var(--border-color);
    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: var(--primary-color);
}

.btn-submit {
    padding: 1rem;
    background-color: var(--primary-color);
    color: var(--bg-white);
    border: none;
    border-radius: 6px;
    font-weight: 700;
    font-size: 1.05rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background-color: var(--secondary-color);
    box-shadow: var(--shadow-hover);
}

.final-cta {
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 5rem 1.5rem;
    text-align: center;
}

.final-cta-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.final-cta-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.main-footer {
    background-color: var(--text-dark);
    color: var(--bg-white);
    padding: 3rem 1.5rem 1.5rem;
}

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

.footer-column h6 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.footer-column p {
    font-size: 0.9rem;
    line-height: 1.6;
    opacity: 0.8;
}

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

.footer-column a {
    font-size: 0.9rem;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-column a:hover {
    opacity: 1;
}

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

.footer-bottom p {
    font-size: 0.85rem;
    opacity: 0.7;
}

.sticky-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
}

.sticky-cta-btn {
    display: block;
    padding: 1rem 1.5rem;
    background-color: var(--accent-color);
    color: var(--text-dark);
    border-radius: 50px;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.sticky-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-hero {
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 4rem 1.5rem;
    text-align: center;
}

.page-hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.page-hero-content p {
    font-size: 1.1rem;
    opacity: 0.9;
}

.about-story {
    padding: 4rem 1.5rem;
}

.story-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.story-text h2 {
    font-size: 1.9rem;
    margin-bottom: 1.2rem;
    color: var(--primary-color);
}

.story-text p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-medium);
    margin-bottom: 1.2rem;
}

.story-image img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    border-radius: 8px;
}

.values-section {
    background-color: var(--bg-light);
    padding: 4rem 1.5rem;
}

.values-section h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

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

.value-item {
    background-color: var(--bg-white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.value-item h4 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--primary-color);
}

.value-item p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-medium);
}

.team-section {
    padding: 4rem 1.5rem;
}

.team-section h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

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

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

.team-photo {
    width: 180px;
    height: 180px;
    margin: 0 auto 1.2rem;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--accent-color);
}

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

.team-member h5 {
    font-size: 1.3rem;
    margin-bottom: 0.4rem;
    color: var(--primary-color);
}

.team-role {
    font-size: 0.95rem;
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 0.8rem;
}

.team-member p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--text-medium);
}

.approach-section {
    background-color: var(--bg-light);
    padding: 4rem 1.5rem;
}

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

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

.approach-text h3 {
    font-size: 1.7rem;
    margin-bottom: 1.2rem;
    color: var(--primary-color);
}

.approach-text p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-medium);
    margin-bottom: 1.2rem;
}

.numbers-section {
    padding: 4rem 1.5rem;
}

.numbers-section h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

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

.number-item {
    text-align: center;
    padding: 2rem;
    background-color: var(--bg-light);
    border-radius: 8px;
}

.number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.number-label {
    font-size: 1rem;
    color: var(--text-medium);
}

.cta-about {
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 4rem 1.5rem;
    text-align: center;
}

.cta-about-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.cta-about-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.services-intro {
    padding: 2rem 1.5rem;
    background-color: var(--bg-light);
}

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

.services-intro-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-medium);
}

.services-detailed {
    padding: 2rem 1.5rem 4rem;
}

.service-detail {
    padding: 3rem 0;
    border-bottom: 1px solid var(--border-color);
}

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

.service-detail-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.service-detail-text h3 {
    font-size: 1.8rem;
    margin-bottom: 1.2rem;
    color: var(--primary-color);
}

.service-detail-text p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-medium);
    margin-bottom: 1.2rem;
}

.service-features {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

.service-features li {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-medium);
    margin-bottom: 0.6rem;
    position: relative;
    list-style: disc;
}

.service-price-large {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
    margin: 1.5rem 0;
}

.service-detail-image img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 8px;
}

.services-form {
    background-color: var(--bg-light);
    padding: 4rem 1.5rem;
}

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

.services-form-wrapper h2 {
    font-size: 1.9rem;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.services-form-wrapper > p {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--text-medium);
}

.contact-info-section {
    padding: 3rem 1.5rem;
}

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

.contact-info-card {
    background-color: var(--bg-light);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
}

.contact-icon {
    margin: 0 auto 1rem;
    color: var(--primary-color);
}

.contact-info-card h4 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--primary-color);
}

.contact-info-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-medium);
}

.contact-info-card a {
    color: var(--secondary-color);
}

.contact-info-card a:hover {
    color: var(--primary-color);
}

.contact-content {
    padding: 3rem 1.5rem;
    background-color: var(--bg-light);
}

.contact-text {
    max-width: 700px;
    margin: 0 auto;
}

.contact-text h2 {
    font-size: 1.9rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.contact-text p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-medium);
    margin-bottom: 1.2rem;
}

.map-section {
    padding: 3rem 1.5rem;
}

.map-placeholder {
    background-color: var(--bg-light);
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
}

.map-placeholder p {
    font-size: 1rem;
    color: var(--text-medium);
    text-align: center;
    padding: 2rem;
}

.thanks-section {
    padding: 5rem 1.5rem;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-content {
    max-width: 600px;
    text-align: center;
}

.thanks-icon {
    margin: 0 auto 2rem;
}

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

.thanks-message {
    font-size: 1.2rem;
    color: var(--text-medium);
    margin-bottom: 2rem;
}

.thanks-details {
    margin-bottom: 2.5rem;
}

.thanks-details p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-medium);
    margin-bottom: 1rem;
}

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

.legal-content {
    padding: 3rem 1.5rem;
}

.legal-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.legal-intro {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-medium);
    margin-bottom: 2.5rem;
    padding: 1.5rem;
    background-color: var(--bg-light);
    border-left: 4px solid var(--primary-color);
    border-radius: 4px;
}

.legal-wrapper h3 {
    font-size: 1.5rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.legal-wrapper h4 {
    font-size: 1.2rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    color: var(--secondary-color);
}

.legal-wrapper p {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--text-medium);
    margin-bottom: 1rem;
}

.legal-wrapper ul {
    margin: 1rem 0 1.5rem 1.5rem;
}

.legal-wrapper li {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-medium);
    margin-bottom: 0.6rem;
    list-style: disc;
}

.legal-wrapper a {
    color: var(--secondary-color);
    text-decoration: underline;
}

.legal-wrapper a:hover {
    color: var(--primary-color);
}

.legal-date {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    font-style: italic;
    color: var(--text-light);
}

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

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

.cookie-table th {
    background-color: var(--bg-light);
    font-weight: 600;
    color: var(--primary-color);
}

.cookie-table td {
    font-size: 0.9rem;
    color: var(--text-medium);
}

@media (min-width: 768px) {
    .nav-toggle {
        display: none;
    }

    .nav-menu {
        position: static;
        width: auto;
        height: auto;
        flex-direction: row;
        box-shadow: none;
        padding: 0;
        gap: 2rem;
    }

    .nav-menu li {
        padding: 0;
    }

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

    .cookie-actions {
        flex-shrink: 0;
    }

    .hero-split {
        flex-direction: row;
        min-height: 90vh;
    }

    .hero-text,
    .hero-image {
        width: 50%;
    }

    .hero-text {
        padding: 4rem;
    }

    .hero-text h1 {
        font-size: 3rem;
    }

    .hero-image {
        height: auto;
    }

    .intro-content {
        flex-direction: row;
        align-items: center;
        gap: 4rem;
    }

    .intro-block-left,
    .intro-block-right {
        flex: 1;
    }

    .philosophy-wrapper {
        flex-direction: row;
        gap: 4rem;
        align-items: center;
    }

    .philosophy-wrapper .philosophy-image,
    .philosophy-wrapper .philosophy-text {
        flex: 1;
    }

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

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

    .timeline {
        flex-direction: row;
        flex-wrap: wrap;
    }

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

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

    .testimonial-card {
        flex: 1;
    }

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

    .footer-column {
        flex: 1;
    }

    .story-container {
        flex-direction: row;
        gap: 4rem;
        align-items: center;
    }

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

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

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

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

    .team-member {
        flex: 1 1 calc(33.333% - 1.67rem);
    }

    .approach-content {
        flex-direction: row;
        gap: 4rem;
        align-items: center;
    }

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

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

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

    .service-detail-content {
        flex-direction: row;
        gap: 4rem;
        align-items: center;
    }

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

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

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

    .contact-info-card {
        flex: 1;
    }

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

@media (min-width: 1024px) {
    .hero-text h1 {
        font-size: 3.5rem;
    }

    .hero-text p {
        font-size: 1.2rem;
    }

    .service-card {
        flex: 1 1 calc(33.333% - 1.33rem);
    }

    .timeline {
        justify-content: space-between;
    }

    .timeline-item {
        flex: 1 1 calc(25% - 1.875rem);
    }
}