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

:root {
    --primary-color: #2c5f4f;
    --secondary-color: #4a8f7a;
    --accent-color: #d4a574;
    --text-dark: #2a2a2a;
    --text-light: #666;
    --bg-light: #f9f7f4;
    --bg-white: #ffffff;
    --border-color: #e0ddd8;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--bg-light);
    overflow-x: hidden;
}

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

.main-header {
    background-color: var(--bg-white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-brand {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
}

.nav-disclosure {
    font-size: 11px;
    color: var(--text-light);
    padding: 4px 12px;
    background-color: var(--bg-light);
    border-radius: 4px;
    order: 3;
    margin-top: 12px;
    width: 100%;
    text-align: center;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 32px;
}

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

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

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 4px;
}

.nav-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    transition: var(--transition);
}

.hero-section {
    position: relative;
    height: 520px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-color: var(--primary-color);
}

.hero-overlay {
    position: relative;
    z-index: 2;
    background: rgba(44, 95, 79, 0.85);
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    text-align: center;
    color: white;
    max-width: 720px;
    padding: 0 24px;
}

.hero-content h1 {
    font-size: 52px;
    margin-bottom: 20px;
    font-weight: 800;
    line-height: 1.2;
}

.hero-content p {
    font-size: 20px;
    margin-bottom: 32px;
    opacity: 0.95;
}

.cta-primary {
    display: inline-block;
    padding: 16px 40px;
    background-color: var(--accent-color);
    color: var(--text-dark);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.cta-primary:hover {
    background-color: #c59563;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.cta-secondary {
    display: inline-block;
    padding: 16px 40px;
    background-color: transparent;
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: var(--transition);
    border: 2px solid var(--primary-color);
    cursor: pointer;
    font-size: 16px;
}

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

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

.intro-card {
    max-width: 820px;
    margin: 0 auto;
    text-align: center;
}

.intro-card h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: var(--primary-color);
}

.intro-card p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 16px;
}

.services-grid-section {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.section-title {
    font-size: 40px;
    text-align: center;
    margin-bottom: 56px;
    color: var(--primary-color);
    font-weight: 700;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 28px;
    justify-content: center;
}

.service-card {
    background-color: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    width: calc(33.333% - 20px);
    min-width: 300px;
    display: flex;
    flex-direction: column;
}

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

.card-image {
    width: 100%;
    height: 220px;
    background-size: cover;
    background-position: center;
    background-color: var(--border-color);
}

.card-content {
    padding: 28px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.card-content h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.card-content p {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 20px;
    flex-grow: 1;
}

.card-price {
    font-size: 26px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.select-service-btn {
    padding: 12px 28px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-size: 15px;
}

.select-service-btn:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
}

.testimonials-section {
    padding: 80px 0;
    background-color: var(--bg-white);
}

.testimonials-section h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 56px;
    color: var(--primary-color);
}

.testimonials-grid {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.testimonial-card {
    background-color: var(--bg-light);
    padding: 32px;
    border-radius: 12px;
    border-left: 4px solid var(--accent-color);
    flex: 1;
    min-width: 280px;
}

.testimonial-card p {
    font-size: 16px;
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 16px;
    line-height: 1.8;
}

.testimonial-card cite {
    font-style: normal;
    font-weight: 600;
    color: var(--primary-color);
}

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

.form-wrapper {
    max-width: 640px;
    margin: 0 auto;
    background-color: var(--bg-white);
    padding: 48px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.form-wrapper h2 {
    font-size: 32px;
    margin-bottom: 32px;
    color: var(--primary-color);
    text-align: center;
}

.registration-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

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

.form-group label {
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.form-group input,
.form-group textarea {
    padding: 14px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 15px;
    transition: var(--transition);
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group input[readonly] {
    background-color: var(--bg-light);
    cursor: not-allowed;
}

.btn-submit {
    padding: 16px 40px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: var(--transition);
}

.btn-submit:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
}

.cta-bottom-section {
    padding: 80px 0;
    background-color: var(--bg-white);
}

.cta-bottom-card {
    text-align: center;
    max-width: 720px;
    margin: 0 auto;
    padding: 48px;
    background-color: var(--bg-light);
    border-radius: 12px;
}

.cta-bottom-card h2 {
    font-size: 32px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.cta-bottom-card p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 28px;
}

.disclaimer-section {
    padding: 60px 0;
    background-color: var(--bg-light);
}

.disclaimer-text {
    font-size: 14px;
    color: var(--text-light);
    text-align: center;
    max-width: 920px;
    margin: 0 auto;
    line-height: 1.8;
}

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

.footer-grid {
    display: flex;
    gap: 48px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

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

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 16px;
    color: var(--accent-color);
}

.footer-column p {
    font-size: 14px;
    color: #ccc;
    line-height: 1.6;
}

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

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: #ccc;
    text-decoration: none;
    transition: var(--transition);
}

.footer-column ul li a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid #444;
}

.footer-bottom p {
    font-size: 14px;
    color: #999;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--text-dark);
    color: white;
    padding: 20px;
    box-shadow: 0 -4px 12px 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;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 14px;
    min-width: 280px;
}

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

.cookie-actions {
    display: flex;
    gap: 12px;
}

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-size: 14px;
}

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

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

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

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

.page-hero {
    padding: 80px 0 40px;
    background-color: var(--bg-white);
    text-align: center;
}

.page-hero h1 {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.lead {
    font-size: 20px;
    color: var(--text-light);
}

.about-story-section {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.about-grid {
    display: flex;
    gap: 56px;
    align-items: center;
}

.about-image-wrapper {
    flex: 1;
}

.about-image-wrapper img {
    width: 100%;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.about-content {
    flex: 1;
}

.about-content h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: var(--primary-color);
}

.about-content p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.8;
}

.values-section {
    padding: 80px 0;
    background-color: var(--bg-white);
}

.values-section h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 56px;
    color: var(--primary-color);
}

.values-grid {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.value-card {
    background-color: var(--bg-light);
    padding: 32px;
    border-radius: 12px;
    flex: 1;
    min-width: 240px;
}

.value-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

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

.team-section {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.team-section h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 24px;
    color: var(--primary-color);
}

.section-intro {
    text-align: center;
    font-size: 18px;
    color: var(--text-light);
    max-width: 720px;
    margin: 0 auto 56px;
}

.team-grid {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
    justify-content: center;
}

.team-member {
    background-color: var(--bg-white);
    border-radius: 12px;
    padding: 24px;
    text-align: center;
    width: calc(33.333% - 24px);
    min-width: 260px;
    box-shadow: var(--shadow-sm);
}

.member-image {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    margin: 0 auto 20px;
    background-color: var(--border-color);
}

.team-member h3 {
    font-size: 20px;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.role {
    font-size: 14px;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 12px;
}

.team-member p {
    font-size: 14px;
    color: var(--text-light);
}

.approach-section {
    padding: 80px 0;
    background-color: var(--bg-white);
}

.approach-content {
    max-width: 820px;
    margin: 0 auto;
}

.approach-content h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: var(--primary-color);
}

.approach-content p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 28px;
}

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

.approach-list li {
    font-size: 16px;
    color: var(--text-dark);
    padding: 12px 0 12px 32px;
    position: relative;
}

.approach-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 18px;
}

.cta-section {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.cta-box {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 64px;
    border-radius: 12px;
    text-align: center;
}

.cta-box h2 {
    font-size: 36px;
    margin-bottom: 16px;
}

.cta-box p {
    font-size: 18px;
    margin-bottom: 32px;
    opacity: 0.95;
}

.services-detail-section {
    padding: 60px 0;
    background-color: var(--bg-light);
}

.service-detail-card {
    margin-bottom: 48px;
    background-color: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.service-detail-grid {
    display: flex;
    align-items: stretch;
}

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

.service-detail-image {
    flex: 1;
    min-width: 400px;
}

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

.service-detail-content {
    flex: 1;
    padding: 48px;
}

.service-detail-content h2 {
    font-size: 32px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.service-price-tag {
    display: inline-block;
    font-size: 24px;
    font-weight: 700;
    color: var(--accent-color);
    background-color: var(--bg-light);
    padding: 8px 20px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.service-detail-content p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 24px;
    line-height: 1.8;
}

.service-detail-content h3 {
    font-size: 20px;
    margin: 28px 0 16px;
    color: var(--text-dark);
}

.service-detail-content ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 28px;
}

.service-detail-content ul li {
    font-size: 15px;
    color: var(--text-dark);
    padding: 8px 0 8px 28px;
    position: relative;
}

.service-detail-content ul li:before {
    content: "•";
    position: absolute;
    left: 8px;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 20px;
}

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

.faq-section h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 56px;
    color: var(--primary-color);
}

.faq-grid {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.faq-item {
    background-color: var(--bg-light);
    padding: 28px;
    border-radius: 12px;
    flex: 1;
    min-width: 280px;
}

.faq-item h3 {
    font-size: 18px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

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

.contact-info-section {
    padding: 60px 0;
    background-color: var(--bg-light);
}

.contact-grid {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.contact-card {
    background-color: var(--bg-white);
    padding: 32px;
    border-radius: 12px;
    flex: 1;
    min-width: 260px;
    box-shadow: var(--shadow-sm);
}

.contact-card h2 {
    font-size: 22px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.contact-card p {
    font-size: 15px;
    color: var(--text-dark);
    line-height: 1.8;
}

.note {
    font-size: 13px;
    color: var(--text-light);
    font-style: italic;
    margin-top: 8px;
}

.map-section {
    padding: 60px 0;
    background-color: var(--bg-white);
}

.map-section h2 {
    font-size: 32px;
    margin-bottom: 24px;
    color: var(--primary-color);
    text-align: center;
}

.map-placeholder {
    background-color: var(--bg-light);
    padding: 48px;
    border-radius: 12px;
    max-width: 820px;
    margin: 0 auto;
}

.map-placeholder p {
    font-size: 16px;
    color: var(--text-dark);
    margin-bottom: 16px;
    line-height: 1.8;
}

.visit-section {
    padding: 60px 0;
    background-color: var(--bg-light);
}

.visit-card {
    max-width: 820px;
    margin: 0 auto;
    background-color: var(--bg-white);
    padding: 48px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.visit-card h2 {
    font-size: 32px;
    margin-bottom: 24px;
    color: var(--primary-color);
}

.visit-card p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.8;
}

.directions-section {
    padding: 60px 0;
    background-color: var(--bg-white);
}

.directions-section h2 {
    font-size: 32px;
    margin-bottom: 40px;
    color: var(--primary-color);
    text-align: center;
}

.directions-grid {
    display: flex;
    gap: 32px;
    max-width: 920px;
    margin: 0 auto;
}

.direction-option {
    background-color: var(--bg-light);
    padding: 32px;
    border-radius: 12px;
    flex: 1;
}

.direction-option h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.direction-option p {
    font-size: 15px;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.direction-option ul {
    list-style: none;
    padding-left: 0;
}

.direction-option ul li {
    font-size: 15px;
    color: var(--text-dark);
    padding: 6px 0;
}

.thanks-section {
    padding: 100px 0;
    background-color: var(--bg-white);
    text-align: center;
}

.thanks-content {
    max-width: 720px;
    margin: 0 auto;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background-color: var(--primary-color);
    color: white;
    font-size: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 32px;
}

.thanks-content h1 {
    font-size: 44px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.thanks-details {
    text-align: left;
    background-color: var(--bg-light);
    padding: 32px;
    border-radius: 12px;
    margin: 32px 0;
}

.thanks-details p {
    font-size: 16px;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.thanks-details ul {
    margin-bottom: 16px;
}

.thanks-details ul li {
    font-size: 15px;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.thanks-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 32px;
}

.next-steps-section {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.next-steps-section h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 56px;
    color: var(--primary-color);
}

.steps-grid {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.step-card {
    background-color: var(--bg-white);
    padding: 32px;
    border-radius: 12px;
    text-align: center;
    flex: 1;
    min-width: 260px;
    box-shadow: var(--shadow-sm);
}

.step-number {
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    color: white;
    font-size: 28px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 20px;
}

.step-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.step-card p {
    font-size: 15px;
    color: var(--text-light);
}

.support-section {
    padding: 60px 0;
    background-color: var(--bg-white);
}

.support-card {
    max-width: 720px;
    margin: 0 auto;
    background-color: var(--bg-light);
    padding: 48px;
    border-radius: 12px;
    text-align: center;
}

.support-card h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.support-card p {
    font-size: 16px;
    color: var(--text-dark);
    margin-bottom: 16px;
    line-height: 1.8;
}

.legal-page {
    padding: 60px 0;
    background-color: var(--bg-white);
}

.legal-page h1 {
    font-size: 44px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.last-updated {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 48px;
}

.legal-section {
    margin-bottom: 40px;
}

.legal-section h2 {
    font-size: 28px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.legal-section h3 {
    font-size: 22px;
    margin: 24px 0 12px;
    color: var(--text-dark);
}

.legal-section p {
    font-size: 16px;
    color: var(--text-dark);
    margin-bottom: 16px;
    line-height: 1.8;
}

.legal-section ul {
    margin-bottom: 16px;
}

.legal-section ul li {
    font-size: 15px;
    color: var(--text-dark);
    margin-bottom: 8px;
    line-height: 1.7;
}

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

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
}

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

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

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

@media (max-width: 768px) {
    .nav-menu {
        display: none;
        flex-direction: column;
        width: 100%;
        gap: 16px;
        padding: 20px 0;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .hero-content p {
        font-size: 16px;
    }

    .services-grid,
    .testimonials-grid,
    .values-grid,
    .team-grid,
    .faq-grid,
    .contact-grid,
    .steps-grid {
        flex-direction: column;
    }

    .service-card,
    .team-member {
        width: 100%;
    }

    .about-grid,
    .service-detail-grid,
    .directions-grid {
        flex-direction: column;
    }

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

    .service-detail-image {
        min-width: auto;
        height: 300px;
    }

    .service-detail-content {
        padding: 32px 24px;
    }

    .form-wrapper {
        padding: 32px 24px;
    }

    .footer-grid {
        flex-direction: column;
        gap: 32px;
    }
}
