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

html {
    font-size: 16px;
    line-height: 1.6;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    font-weight: 400;
    color: #1a1a1a;
    background-color: #ffffff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Custom Grid System */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
}

/* Typography */
h1 {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
    max-width: 70ch;
}

h2 {
    font-size: 2.25rem;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.01em;
    margin-bottom: 1.5rem;
    max-width: 65ch;
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
    max-width: 60ch;
}

p {
    font-size: 1.125rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    max-width: 65ch;
}

@media (max-width: 768px) {
    h1 { font-size: 2.25rem; }
    h2 { font-size: 1.875rem; }
    h3 { font-size: 1.25rem; }
    p { font-size: 1rem; }
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #f0f0f0;
    z-index: 1000;
    padding: 1rem 0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 40px;
    width: auto;
}

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

.nav-list a {
    text-decoration: none;
    color: #1a1a1a;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.2s ease;
}

.nav-list a:hover {
    color: #666;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 2px;
    background-color: #1a1a1a;
    margin: 3px 0;
    transition: 0.3s;
}

@media (max-width: 768px) {
    .nav-list {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: white;
        border-bottom: 1px solid #f0f0f0;
        flex-direction: column;
        padding: 1rem;
        gap: 1rem;
    }

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

    .mobile-menu-toggle {
        display: flex;
    }

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

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

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

/* Main Content Spacing */
main {
    padding-top: 80px;
}

section {
    padding: 6rem 0;
}

@media (max-width: 768px) {
    section {
        padding: 4rem 0;
    }
}

/* Intro Section */
.intro-section {
    background-color: #fafafa;
    margin-top: 80px;
    padding-top: 0;
}

.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.intro-text {
    padding-top: 4rem;
}

.intro-text h1 {
    margin-bottom: 2rem;
}

.intro-text h2 {
    font-weight: 400;
    color: #666;
    margin-bottom: 0;
}

.intro-image {
    position: relative;
}

.intro-image img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .intro-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .intro-text {
        padding-top: 2rem;
    }
}

/* Who We Are Section */
.who-we-are-section {
    background-color: white;
}

.who-we-are-grid {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 4rem;
    align-items: start;
}

.who-we-are-content {
    max-width: 55ch;
}

.who-we-are-content h2 {
    margin-bottom: 1.5rem;
}

.who-we-are-content p {
    margin-bottom: 2.5rem;
}

.who-we-are-image {
    position: relative;
    margin-top: 2rem;
}

.who-we-are-image img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    max-width: 300px;
}

.cta-link {
    display: inline-block;
    text-decoration: none;
    color: #1a1a1a;
    font-weight: 600;
    font-size: 1.125rem;
    border-bottom: 2px solid #1a1a1a;
    padding-bottom: 0.25rem;
    transition: border-color 0.2s ease;
}

.cta-link:hover {
    border-color: #666;
}

/* Advantages Section */
.advantages-section {
    background-color: #fafafa;
}

.advantages-section h2 {
    margin-bottom: 4rem;
    text-align: center;
}

.advantages-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.advantage-item {
    padding: 0 1rem;
}

.advantage-item h3 {
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.advantage-item p {
    margin-bottom: 0;
    font-size: 1rem;
    line-height: 1.6;
}

/* Pricing Intro Section */
.pricing-intro-section {
    background-color: white;
}

.pricing-intro-grid {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 3rem;
    align-items: start;
}

.pricing-intro-content {
    max-width: 50ch;
}

.pricing-intro-content h2 {
    margin-bottom: 1.5rem;
}

.pricing-intro-content p {
    margin-bottom: 2.5rem;
}

.pricing-intro-image {
    position: relative;
    margin-top: 1rem;
    justify-self: end;
}

.pricing-intro-image img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    max-width: 250px;
}

/* Reviews Section */
.reviews-section {
    background-color: #fafafa;
}

.reviews-section h2 {
    margin-bottom: 4rem;
    text-align: center;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
}

.review-item {
    font-style: italic;
    position: relative;
    padding: 2rem;
    background-color: white;
    border-radius: 4px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.review-item p {
    margin-bottom: 1.5rem;
    font-size: 1rem;
    line-height: 1.6;
}

.review-item cite {
    font-style: normal;
    font-weight: 600;
    color: #666;
    font-size: 0.9rem;
}

/* FAQ Intro Section */
.faq-intro-section {
    background-color: white;
}

.faq-intro-grid {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 3.5rem;
    align-items: start;
}

.faq-intro-content {
    max-width: 50ch;
}

.faq-intro-content h2 {
    margin-bottom: 1.5rem;
}

.faq-intro-content p {
    margin-bottom: 2.5rem;
}

.faq-intro-image {
    position: relative;
    margin-top: 1.5rem;
}

.faq-intro-image img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    max-width: 280px;
}

/* Contact CTA Section */
.contact-cta-section {
    background-color: #fafafa;
}

.contact-cta-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: center;
}

.contact-cta-content {
    max-width: 45ch;
}

.contact-cta-content h2 {
    margin-bottom: 1.5rem;
}

.contact-cta-content p {
    margin-bottom: 2.5rem;
}

.contact-cta-image {
    position: relative;
}

.contact-cta-image img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    max-width: 400px;
}

/* Footer */
.footer {
    background-color: #1a1a1a;
    color: white;
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 3rem;
    align-items: start;
}

.footer-logo img {
    height: 35px;
    width: auto;
}

.footer-nav ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}

.footer-nav a {
    text-decoration: none;
    color: #ccc;
    font-size: 0.9rem;
    transition: color 0.2s ease;
}

.footer-nav a:hover {
    color: white;
}

.contact-link {
    display: block;
    text-decoration: none;
    color: white;
    font-weight: 500;
    margin-bottom: 0.5rem;
    transition: color 0.2s ease;
}

.contact-link:hover {
    color: #ccc;
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .footer-nav ul {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
}

/* Subtle animations */
@media (prefers-reduced-motion: no-preference) {
    .intro-image img,
    .review-item {
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .intro-image img:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    }

    .review-item:hover {
        transform: translateY(-1px);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    }
}

/* Page Intro */
.page-intro {
    padding: 8rem 0 4rem;
    background-color: #fafafa;
    margin-top: 80px;
    padding-top: 0;
}

.page-intro h1 {
    margin-bottom: 1.5rem;
}

.intro-text {
    font-size: 1.25rem;
    line-height: 1.6;
    color: #666;
    max-width: 60ch;
}

/* Pricing Plans */
.pricing-plans-section {
    padding: 6rem 0;
    background-color: white;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.pricing-card {
    background-color: #fafafa;
    padding: 3rem 2rem;
    text-align: center;
    position: relative;
    border-radius: 4px;
}

.pricing-card.featured {
    background-color: #1a1a1a;
    color: white;
    transform: scale(1.05);
}

.pricing-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.price {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
}

.price span {
    font-size: 1rem;
    font-weight: 400;
    color: #666;
}

.pricing-card.featured .price span {
    color: #ccc;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pricing-features li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #e0e0e0;
}

.pricing-card.featured .pricing-features li {
    border-bottom-color: #333;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.featured-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #1a1a1a;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Additional Options */
.additional-options-section {
    background-color: #fafafa;
    padding: 6rem 0;
}

.additional-options-section h2 {
    text-align: center;
    margin-bottom: 4rem;
}

.options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.option-item {
    background-color: white;
    padding: 2rem;
    border-radius: 4px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.option-item h3 {
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.option-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.option-item p {
    margin: 0;
    color: #666;
    line-height: 1.6;
}

/* Pricing Info */
.pricing-info-section {
    background-color: white;
    padding: 6rem 0;
}

.pricing-info-content h2 {
    text-align: center;
    margin-bottom: 4rem;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
}

.info-block h3 {
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.info-block p {
    margin: 0;
    line-height: 1.6;
    color: #666;
}

/* CTA Section */
.cta-section {
    background-color: #fafafa;
    padding: 6rem 0;
}

.cta-content {
    text-align: center;
    max-width: 50ch;
    margin: 0 auto;
}

.cta-content h2 {
    margin-bottom: 1.5rem;
}

.cta-content p {
    margin-bottom: 2.5rem;
    color: #666;
}

/* About Us Page Styles */
.philosophy-section {
    background-color: white;
    padding: 6rem 0;
}

.philosophy-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.philosophy-text h2 {
    margin-bottom: 2rem;
}

.philosophy-text p {
    margin-bottom: 1.5rem;
    max-width: 55ch;
}

.philosophy-image img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.values-section {
    background-color: #fafafa;
    padding: 6rem 0;
}

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

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.value-item h3 {
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.value-item p {
    margin: 0;
    line-height: 1.6;
    color: #666;
}

.approach-section {
    background-color: white;
    padding: 6rem 0;
}

.approach-content {
    max-width: 70ch;
    margin: 0 auto;
    text-align: center;
}

.approach-content h2 {
    margin-bottom: 2rem;
}

.approach-content p {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.commitment-section {
    background-color: #fafafa;
    padding: 6rem 0;
}

.commitment-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.commitment-image img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.commitment-text h2 {
    margin-bottom: 2rem;
}

.commitment-text p {
    margin-bottom: 1.5rem;
    max-width: 55ch;
}

/* About Us Page Styles */
.about-us-section {
    padding: 6rem 0;
    background-color: white;
}

.about-us-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.about-us-content h1 {
    margin-bottom: 2rem;
    font-size: 2.5rem;
    line-height: 1.2;
}

.about-us-text p {
    margin-bottom: 1.5rem;
    line-height: 1.7;
    max-width: 65ch;
}

.about-us-image img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* Price Page Styles */
.price-section {
    padding: 6rem 0;
    background-color: white;
}

.price-grid {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 4rem;
    align-items: start;
}

.price-content h1 {
    margin-bottom: 2rem;
    font-size: 2.5rem;
    line-height: 1.2;
}

.price-intro p {
    margin-bottom: 1.5rem;
    line-height: 1.7;
    max-width: 65ch;
}

.pricing-services {
    margin: 3rem 0;
}

.service-item {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #f0f0f0;
}

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

.service-item h3 {
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
    font-weight: 600;
}

.service-price {
    font-size: 1.125rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.service-item p {
    margin: 0;
    line-height: 1.6;
    color: #666;
}

.working-hours {
    margin: 3rem 0;
    padding: 2rem;
    background-color: #fafafa;
    border-radius: 4px;
}

.working-hours h2 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.working-hours p {
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.hours-list {
    margin-bottom: 1.5rem;
}

.hours-item {
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.hours-item span {
    display: block;
    line-height: 1.4;
}

.booking-contact {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid #f0f0f0;
}

.booking-contact h2 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.booking-contact p {
    margin-bottom: 2rem;
    line-height: 1.6;
    max-width: 55ch;
}

.price-image img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    max-width: 500px;
}

/* FAQ Styles */
.faq-section {
    background-color: white;
    padding: 6rem 0;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 4rem;
    align-items: start;
}

.faq-content h1 {
    margin-bottom: 2rem;
    font-size: 2.5rem;
    line-height: 1.2;
}

.faq-intro p {
    margin-bottom: 1.5rem;
    line-height: 1.7;
    max-width: 65ch;
}

.faq-list {
    margin-top: 3rem;
}

.faq-item {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #f0f0f0;
}

.faq-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.faq-item h3 {
    margin-bottom: 1rem;
    font-size: 1.125rem;
    font-weight: 600;
    line-height: 1.4;
}

.faq-item p {
    margin: 0;
    line-height: 1.6;
    color: #666;
}

.faq-image img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    max-width: 500px;
}

.contact-faq-section {
    background-color: #fafafa;
    padding: 6rem 0;
}

.contact-faq-content {
    text-align: center;
    max-width: 50ch;
    margin: 0 auto;
}

.contact-faq-content h2 {
    margin-bottom: 1.5rem;
}

.contact-faq-content p {
    margin-bottom: 2.5rem;
    color: #666;
}

/* Contact Page Styles */
.contact-info-section {
    background-color: white;
    padding: 6rem 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-details h2 {
    margin-bottom: 3rem;
    font-size: 2rem;
}

.address-block,
.contact-method,
.hours-block {
    margin-bottom: 3rem;
}

.address-block h3,
.contact-method h3,
.hours-block h3 {
    margin-bottom: 1rem;
    font-size: 1.25rem;
    color: #1a1a1a;
}

.address-block p {
    margin: 0;
    line-height: 1.6;
    color: #666;
}

.contact-value {
    display: block;
    text-decoration: none;
    color: #1a1a1a;
    font-weight: 600;
    font-size: 1.125rem;
    transition: color 0.2s ease;
}

.contact-value:hover {
    color: #666;
}

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

.hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid #f0f0f0;
}

.hours-item:last-child {
    border-bottom: none;
}

.hours-item span:first-child {
    font-weight: 500;
}

.hours-item span:last-child {
    color: #666;
}

.contact-image img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.contact-form-section {
    background-color: #fafafa;
    padding: 6rem 0;
}

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

.contact-form-container h2 {
    margin-bottom: 1rem;
    text-align: center;
}

.contact-form-container > p {
    text-align: center;
    margin-bottom: 3rem;
    color: #666;
}

.contact-form {
    background-color: white;
    padding: 3rem;
    border-radius: 4px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

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

.form-group:last-child {
    margin-bottom: 0;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #1a1a1a;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #1a1a1a;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    width: 100%;
    padding: 1rem;
    background-color: #1a1a1a;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.submit-btn:hover {
    background-color: #333;
}

.directions-section {
    background-color: white;
    padding: 6rem 0;
}

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

.directions-content > p {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 60ch;
    margin-left: auto;
    margin-right: auto;
    color: #666;
}

.transport-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
}

.transport-item h3 {
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.transport-item p {
    margin: 0;
    line-height: 1.6;
    color: #666;
}

/* Contacts Page Styles */
.contacts-section {
    padding: 6rem 0;
    background-color: white;
}

.contacts-grid {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 4rem;
    align-items: start;
}

.contacts-content h1 {
    margin-bottom: 2rem;
    font-size: 2.5rem;
    line-height: 1.2;
}

.contacts-intro p {
    margin-bottom: 1.5rem;
    line-height: 1.7;
    max-width: 65ch;
}

.contact-info-block {
    margin: 3rem 0;
    padding: 2rem;
    background-color: #fafafa;
    border-radius: 4px;
}

.contact-info-block h2 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.contact-info-block > p {
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.contact-details-list {
    margin-bottom: 1.5rem;
}

.contact-detail-item {
    margin-bottom: 0.75rem;
    line-height: 1.5;
}

.contact-detail-item strong {
    display: inline-block;
    min-width: 100px;
    font-weight: 600;
}

.contact-detail-item a {
    color: #1a1a1a;
    text-decoration: none;
    transition: color 0.2s ease;
}

.contact-detail-item a:hover {
    color: #666;
}

.contact-form-block {
    margin-top: 3rem;
}

.contact-form-block h2 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.contact-form-block > p {
    margin-bottom: 2rem;
    line-height: 1.6;
    max-width: 55ch;
}

.form-privacy {
    margin-bottom: 2rem;
    padding: 1rem;
    background-color: #f8f8f8;
    border-radius: 4px;
    border-left: 4px solid #1a1a1a;
}

.form-privacy p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.5;
    color: #555;
}

.contacts-image img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    max-width: 500px;
}

@media (max-width: 768px) {
    .philosophy-grid,
    .commitment-grid,
    .who-we-are-grid,
    .pricing-intro-grid,
    .faq-intro-grid,
    .contact-cta-grid,
    .about-us-grid,
    .price-grid,
    .faq-grid,
    .contacts-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .who-we-are-image,
    .pricing-intro-image,
    .faq-intro-image,
    .contact-cta-image {
        margin-top: 0;
        justify-self: center;
    }

    .pricing-intro-image {
        justify-self: center;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .pricing-card.featured {
        transform: none;
    }

    .options-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .info-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* Focus styles for accessibility */
a:focus,
button:focus {
    outline: 2px solid #1a1a1a;
    outline-offset: 2px;
}