/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #8B7355;
    --primary-dark: #6B5840;
    --secondary-color: #A0826D;
    --accent-color: #D4C4B0;
    --text-color: #2C2C2C;
    --text-light: #5A5A5A;
    --bg-light: #FAF8F5;
    --bg-white: #FFFFFF;
    --border-color: #E5DED4;
    --shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 4px 16px rgba(0, 0, 0, 0.15);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-color);
    background-color: var(--bg-white);
}

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

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

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--primary-dark);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: var(--text-color);
}

h1 {
    font-size: 2rem;
}

h2 {
    font-size: 1.75rem;
}

h3 {
    font-size: 1.4rem;
}

h4 {
    font-size: 1.2rem;
}

p {
    margin-bottom: 1rem;
}

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

li {
    margin-bottom: 0.5rem;
}

/* Header and Navigation */
.header {
    background-color: var(--bg-white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav {
    padding: 1rem 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

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

.logo:hover {
    color: var(--primary-dark);
}

.menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 25px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.menu-toggle span {
    width: 30px;
    height: 3px;
    background-color: var(--primary-color);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.nav-menu {
    display: none;
    flex-direction: column;
    width: 100%;
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

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

.nav-menu li {
    margin: 0;
}

.nav-menu a {
    display: block;
    padding: 0.75rem 0;
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 1.1rem;
}

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

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    border: 2px solid transparent;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
}

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

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

.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

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

/* Hero Section */
.hero {
    background-color: var(--bg-light);
    padding: 3rem 0;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

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

/* Page Hero */
.page-hero {
    background-color: var(--bg-light);
    padding: 2.5rem 0;
    text-align: center;
}

.page-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 0;
}

/* Sections */
section {
    padding: 3rem 0;
}

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

.section-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 2rem;
    font-size: 1.1rem;
    color: var(--text-light);
}

/* Company Story */
.company-story {
    background-color: var(--bg-white);
}

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

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

.story-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem;
    color: var(--primary-color);
}

.story-icon svg {
    width: 100%;
    height: 100%;
}

/* Philosophy Section */
.philosophy {
    background-color: var(--bg-light);
}

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

.philosophy-text {
    flex: 1;
}

.philosophy-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.philosophy-visual svg {
    max-width: 300px;
    width: 100%;
    height: auto;
}

/* Services Highlight */
.services-highlight {
    background-color: var(--bg-white);
}

.services-highlight h2 {
    text-align: center;
    margin-bottom: 2.5rem;
}

.services-cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.service-card {
    background-color: var(--bg-light);
    padding: 2rem;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-card-icon {
    width: 60px;
    height: 60px;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

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

/* Benefits */
.benefits {
    background-color: var(--bg-light);
}

.benefits h2 {
    text-align: center;
    margin-bottom: 2.5rem;
}

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

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

.benefit-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    min-width: 60px;
}

.benefit-content {
    flex: 1;
}

/* Process */
.process {
    background-color: var(--bg-white);
}

.process h2 {
    text-align: center;
    margin-bottom: 2.5rem;
}

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

.process-step {
    text-align: center;
}

.process-step-visual {
    margin-bottom: 1rem;
}

.process-step-visual svg {
    width: 100px;
    height: 100px;
    margin: 0 auto;
}

/* Testimonials */
.testimonials {
    background-color: var(--bg-light);
}

.testimonials h2 {
    text-align: center;
    margin-bottom: 2.5rem;
}

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

.testimonial {
    background-color: var(--bg-white);
    padding: 2rem;
    border-left: 4px solid var(--primary-color);
    border-radius: 4px;
}

.testimonial p {
    font-style: italic;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.testimonial footer {
    text-align: right;
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Expertise */
.expertise {
    background-color: var(--bg-white);
}

.expertise h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.expertise-content {
    max-width: 900px;
    margin: 0 auto;
}

.expertise-highlights {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.expertise-highlight {
    background-color: var(--bg-light);
    padding: 1.5rem;
    border-radius: 6px;
}

.expertise-highlight h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.expertise-highlight p {
    margin-bottom: 0;
    color: var(--text-light);
}

/* FAQ */
.faq {
    background-color: var(--bg-white);
}

.faq h2 {
    text-align: center;
    margin-bottom: 2.5rem;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1rem;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 1.25rem;
    background-color: var(--bg-white);
    border: none;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-color);
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-family: inherit;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.faq-question.active::after {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background-color: var(--bg-light);
}

.faq-answer p {
    padding: 1.25rem;
    margin: 0;
}

.faq-answer.active {
    max-height: 500px;
}

/* CTA Section */
.cta {
    background-color: var(--primary-color);
    color: var(--bg-white);
    text-align: center;
}

.cta-content h2 {
    color: var(--bg-white);
    margin-bottom: 1rem;
}

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

/* Footer */
.footer {
    background-color: var(--text-color);
    color: var(--bg-light);
    padding: 3rem 0 1rem;
}

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

.footer-col h3,
.footer-col h4 {
    color: var(--bg-white);
    margin-bottom: 1rem;
}

.footer-col p {
    color: var(--bg-light);
    font-size: 0.95rem;
}

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

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

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

.footer-col a:hover {
    color: var(--bg-white);
}

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

.footer-bottom p {
    color: var(--bg-light);
    font-size: 0.9rem;
    margin: 0;
}

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

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

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

.cookie-content p {
    margin: 0;
    font-size: 0.95rem;
}

.cookie-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

/* Cookie Modal */
.cookie-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 3000;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.cookie-modal.active {
    display: flex;
}

.cookie-modal-content {
    background-color: var(--bg-white);
    padding: 2rem;
    border-radius: 8px;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
}

.cookie-modal h2 {
    margin-bottom: 1.5rem;
}

.cookie-options {
    margin-bottom: 2rem;
}

.cookie-option {
    margin-bottom: 1.5rem;
}

.cookie-option label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-weight: 600;
    cursor: pointer;
}

.cookie-option input[type="checkbox"] {
    margin-top: 4px;
}

.cookie-option p {
    margin-top: 0.5rem;
    margin-left: 1.75rem;
    font-size: 0.9rem;
    color: var(--text-light);
}

.cookie-modal-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

/* About Page */
.about-intro {
    background-color: var(--bg-white);
}

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

.about-intro-text {
    flex: 1;
}

.about-intro-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-intro-visual svg {
    max-width: 300px;
    width: 100%;
}

/* Values */
.values {
    background-color: var(--bg-light);
}

.values h2 {
    text-align: center;
    margin-bottom: 2.5rem;
}

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

.value-card {
    background-color: var(--bg-white);
    padding: 1.5rem;
    border-radius: 6px;
    box-shadow: var(--shadow);
}

.value-card h3 {
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

/* Team */
.team {
    background-color: var(--bg-white);
}

.team h2 {
    text-align: center;
    margin-bottom: 1.5rem;
}

.team-members {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

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

.team-member-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 1rem;
    color: var(--primary-color);
}

.team-member-icon svg {
    width: 100%;
    height: 100%;
}

/* Milestones / Timeline */
.milestones {
    background-color: var(--bg-light);
}

.milestones h2 {
    text-align: center;
    margin-bottom: 2.5rem;
}

.timeline {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

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

.timeline-year {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    min-width: 80px;
}

.timeline-content {
    flex: 1;
}

.timeline-content h3 {
    margin-bottom: 0.5rem;
}

/* Approach */
.approach {
    background-color: var(--bg-white);
}

.approach h2 {
    text-align: center;
    margin-bottom: 2rem;
}

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

/* Expertise Areas */
.expertise-areas {
    background-color: var(--bg-light);
}

.expertise-areas h2 {
    text-align: center;
    margin-bottom: 2.5rem;
}

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

.expertise-item {
    background-color: var(--bg-white);
    padding: 2rem;
    border-radius: 6px;
}

.expertise-item h3 {
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

/* Commitment */
.commitment {
    background-color: var(--bg-white);
}

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

.commitment-content .btn {
    margin-top: 1.5rem;
}

/* Services Page */
.services-overview {
    background-color: var(--bg-light);
}

.services-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    color: var(--text-light);
}

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

.service-detail {
    margin-bottom: 3rem;
}

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

.service-detail-header {
    text-align: center;
    margin-bottom: 2rem;
}

.service-detail-header h2 {
    color: var(--primary-color);
}

.service-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.service-item {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    background-color: var(--bg-light);
    padding: 1.5rem;
    border-radius: 6px;
}

.service-item-content h3 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.service-item-content p {
    margin: 0;
    color: var(--text-light);
}

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

/* Service Benefits */
.service-benefits {
    background-color: var(--bg-light);
}

.service-benefits h2 {
    text-align: center;
    margin-bottom: 2.5rem;
}

.benefits-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.benefit-box h3 {
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

/* Service Process */
.service-process {
    background-color: var(--bg-white);
}

.service-process h2 {
    text-align: center;
    margin-bottom: 2.5rem;
}

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

.process-block {
    text-align: center;
}

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

/* FAQ Services */
.faq-services {
    background-color: var(--bg-light);
}

.faq-services h2 {
    text-align: center;
    margin-bottom: 2.5rem;
}

/* Contact Page */
.contact-info {
    background-color: var(--bg-white);
}

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

.contact-details {
    flex: 1;
}

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

.contact-item h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.contact-item a {
    color: var(--primary-color);
}

.contact-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-visual svg {
    max-width: 300px;
    width: 100%;
}

/* Location Info */
.location-info {
    background-color: var(--bg-light);
}

.location-info h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.location-content {
    max-width: 900px;
    margin: 0 auto;
}

.directions {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.direction-item {
    background-color: var(--bg-white);
    padding: 1.5rem;
    border-radius: 6px;
}

.direction-item h3 {
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

/* Company Info Contact */
.company-info-contact {
    background-color: var(--bg-white);
}

.company-info-contact h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.company-info-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.info-block {
    background-color: var(--bg-light);
    padding: 1.5rem;
    border-radius: 6px;
}

.info-block h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.info-block p {
    margin: 0;
}

/* FAQ Contact */
.faq-contact {
    background-color: var(--bg-light);
}

.faq-contact h2 {
    text-align: center;
    margin-bottom: 2.5rem;
}

/* About Contact */
.about-contact {
    background-color: var(--bg-white);
}

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

/* Thank You Page */
.thank-you-section {
    background-color: var(--bg-light);
    padding: 4rem 0;
}

.thank-you-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.thank-you-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 2rem;
    color: var(--primary-color);
}

.thank-you-icon svg {
    width: 100%;
    height: 100%;
}

.thank-you-message {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.thank-you-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

/* Next Steps */
.next-steps {
    background-color: var(--bg-white);
}

.next-steps h2 {
    text-align: center;
    margin-bottom: 2.5rem;
}

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

.step-box {
    text-align: center;
    background-color: var(--bg-light);
    padding: 2rem;
    border-radius: 6px;
}

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

/* Additional Info */
.additional-info {
    background-color: var(--bg-light);
}

.additional-info h2 {
    text-align: center;
    margin-bottom: 2.5rem;
}

.info-cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-card {
    background-color: var(--bg-white);
    padding: 2rem;
    border-radius: 6px;
    box-shadow: var(--shadow);
}

.info-card h3 {
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

/* Legal Content */
.legal-content {
    background-color: var(--bg-white);
}

.legal-text {
    max-width: 900px;
    margin: 0 auto;
}

.legal-text h2 {
    color: var(--primary-color);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.legal-text h3 {
    color: var(--primary-dark);
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.legal-text a {
    text-decoration: underline;
}

/* Tablet and Up */
@media (min-width: 768px) {
    h1 {
        font-size: 2.75rem;
    }

    h2 {
        font-size: 2.25rem;
    }

    h3 {
        font-size: 1.6rem;
    }

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

    .menu-toggle {
        display: none;
    }

    .nav-menu {
        display: flex;
        flex-direction: row;
        width: auto;
        margin-top: 0;
        gap: 2rem;
    }

    .nav-menu a {
        padding: 0;
    }

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

    .philosophy-content {
        flex-direction: row;
    }

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

    .service-card {
        flex: 1;
        min-width: 250px;
    }

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

    .testimonial {
        flex: 1;
        min-width: 300px;
    }

    .expertise-highlights {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .expertise-highlight {
        flex: 1;
        min-width: 250px;
    }

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

    .footer-col {
        flex: 1;
    }

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

    .cookie-buttons {
        flex-direction: row;
        flex-shrink: 0;
    }

    .cookie-modal-buttons {
        flex-direction: row;
        justify-content: flex-end;
    }

    .about-intro-content {
        flex-direction: row;
    }

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

    .value-card {
        flex: 1;
        min-width: 300px;
    }

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

    .team-member {
        flex: 1;
        min-width: 250px;
    }

    .expertise-list {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .expertise-item {
        flex: 1;
        min-width: 45%;
    }

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

    .service-item-price {
        flex-shrink: 0;
        min-width: 150px;
        text-align: right;
    }

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

    .benefit-box {
        flex: 1;
        min-width: 45%;
    }

    .process-flow {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .process-block {
        flex: 1;
        min-width: 200px;
    }

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

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

    .direction-item {
        flex: 1;
        min-width: 300px;
    }

    .company-info-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .info-block {
        flex: 1;
        min-width: 45%;
    }

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

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

    .info-cards {
        flex-direction: row;
    }
}

/* Desktop */
@media (min-width: 1024px) {
    section {
        padding: 4rem 0;
    }

    .hero {
        padding: 4rem 0;
    }

    .process-steps {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .process-step {
        flex: 1;
        min-width: 200px;
    }
}