/* sections.css */
/* Hero Section */
.hero {
    padding: 3rem 0;
    background: #F5F5F5; /* Light Gray background */
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.hero-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-image {
    flex: 1;
    max-width: 500px;
}

.hero-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.hero-text {
    flex: 1;
    max-width: 600px;
    text-align: left;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards;
}

.hero-text h1 {
    font-size: 2.5rem;
    color: #8B0000; /* Maroon for headings */
    margin-bottom: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
}

.hero-text p {
    font-size: 1.2rem;
    color: #333333; /* Dark Gray for body text */
    margin-bottom: 2rem;
    line-height: 1.8;
}

.hero-cta {
    background-color: #D2691E; /* Burnt Orange for buttons */
    color: #FFFFFF;
    padding: 1rem 2rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    
    display: inline-block;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.hero-cta:hover {
    background-color: #8B0000; /* Maroon on hover */
    color: #FFFFFF;
}

.subtext {
    font-size: 1rem;
    color: #333333;
    margin-top: 1rem;
}

.note {
    font-size: 0.9rem;
    color: #333333;
    margin-top: 0.5rem;
    font-style: italic;
}

/* Services Section */
.services {
    padding: 12rem 0;
    background: #F5F5F5; /* Light Gray background to match other sections */
}

.services h2 {
    font-size: 2.5rem;
    color: #8B0000; /* Maroon for headings */
    margin-bottom: 2rem;
    font-weight: 700;
    text-align: center;
}

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

.service-card {
    background-color: #FFFFFF;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15);
}

.service-card img {
    width: 100%;
    height: 180px; /* Slightly reduced height for better proportion */
    object-fit: cover;
}

.service-card h3 {
    padding: 1rem;
    font-size: 1.2rem;
    color: #8B0000; /* Maroon for headings */
    font-weight: 600;
}

/* Add link styling for service cards */
.service-card a {
    text-decoration: none;
    color: inherit;
    display: block;
}
/* Quick Forms Section */
.quick-forms {
    padding: 4rem 0;
    background: #FFFFFF; /* White background to match screenshot */
}

.quick-forms h2 {
    font-size: 2.5rem;
    color: #333333; /* Dark Gray for heading to match screenshot */
    margin-bottom: 2rem;
    font-weight: 700;
    text-align: center;
}

.forms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    justify-items: center;
}

.form-card {
    text-align: center;
}

.form-icon {
    font-size: 2.5rem;
    color: #FFFFFF;
    background-color: #4169E1; /* Royal Blue for icon background */
    border-radius: 50%;
    width: 60px;
    height: 60px;
    line-height: 60px;
    margin-bottom: 1rem;
    display: inline-block;
}

.form-card h3 {
    font-size: 1.2rem;
    color: #333333; /* Dark Gray for form titles */
    margin-bottom: 1rem;
    font-weight: 600;
}

.form-button {
    background-color: #4169E1; /* Royal Blue for buttons */
    color: #FFFFFF;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    display: inline-block;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.form-button:hover {
    background-color: #D2691E; /* Burnt Orange on hover */
    color: #FFFFFF;
}

/* Provider Section */
.provider {
    padding: 4rem 0;
    background: #F5F5F5; /* Light Gray background to match other sections */
}

.provider h1 {
    font-size: 2.5rem;
    color: #8B0000; /* Maroon for headings */
    margin-bottom: 2rem;
    font-weight: 700;
    text-align: center;
}

.provider-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1200px;
    border: 2px solid #4A3C6D;

    margin: 0 auto;
}

.provider-image {
    flex: 1;
    max-width: 400px;
    border: 2px solid #4A3C6D;

}

.provider-image img {
    width: 100%;
    height: 400px;
    border: 2px solid #4A3C6D;

    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.provider-text {
    flex: 1;
    max-width: 600px;
    text-align: left;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards;
}

.provider-text h2 {
    font-size: 2rem;
    color: #4169E1; /* Royal Blue for provider name */
    margin-bottom: 1rem;
    font-weight: 700;
}

.provider-text p {
    font-size: 1.1rem;
    color: #333333; /* Dark Gray for body text */
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

/* Appointment Preparation Section */
.appointment-prep {
    padding: 4rem 0;
    background: #FFFFFF; /* White background */
}

.appointment-prep h1 {
    font-size: 2.5rem;
    color: #8B0000; /* Maroon for headings */
    margin-bottom: 2rem;
    font-weight: 700;
    text-align: center;
}

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

.appointment-prep-content ul {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.appointment-prep-content ul li {
    font-size: 1.1rem;
    color: #333333;
    margin-bottom: 1rem;
    line-height: 1.8;
}

.appointment-prep-content ul li strong {
    color: #4169E1; /* Royal Blue for emphasis */
}

.appointment-prep-content p {
    font-size: 1.1rem;
    color: #333333;
    line-height: 1.8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content, .care-content, .health-content, .annual-physical-content, .weight-management-content, .provider-content {
        flex-direction: column;
        text-align: center;
        padding-left: 20px;
    }

    .hero-image, .hero-text, .care-text, .care-image, .health-image, .health-text, .annual-physical-text, .annual-physical-image, .weight-management-text, .weight-management-image, .provider-image, .provider-text {
        max-width: 100%;
    }

    .hero-text h1, .care-text h2, .health-text h2, .services h2, .accreditations h2, .annual-physical-text h1, .weight-management-text h1, .quick-forms h2, .contact-us h1, .provider h1, .blog h1, .blog-post h1 {
        font-size: 2rem;
    }

    .hero-text p, .care-text p, .health-text p, .annual-physical-text p, .weight-management-text p, .provider-text p, .blog-post-content p, .blog-post-content ul li {
        font-size: 1rem;
    }

    .hero-image img, .care-image img, .health-image img, .annual-physical-image img, .weight-management-image img, .provider-image img, .blog-post-image {
        max-height: 200px; /* Reduced height for smaller screens */
    }

    .health-image, .health-text, .provider-image, .provider-text {
        order: 0; /* Reset order for stacking */
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-card img {
        height: 150px; /* Reduced height for mobile */
    }

    .detail-card h3 {
        font-size: 1.1rem;
    }

    .detail-card p, .detail-card ul li {
        font-size: 0.9rem;
    }

    .contact-details {
        grid-template-columns: 1fr;
    }

    .contact-card h3 {
        font-size: 1.2rem;
    }

    .contact-card p {
        font-size: 0.95rem;
    }

    .contact-icon {
        font-size: 2rem;
    }

    .provider-text h2 {
        font-size: 1.8rem;
    }

    .appointment-prep h1 {
        font-size: 2rem;
    }

    .appointment-prep-content ul li {
        font-size: 1rem;
    }

    .appointment-prep-content p {
        font-size: 1rem;
    }

    .faq h1 {
        font-size: 2rem;
    }

    .faq h3 {
        font-size: 1.5rem;
    }

    .faq-question h2 {
        font-size: 1.2rem;
    }

    .faq-question i {
        font-size: 1rem;
    }

    .faq-answer p {
        font-size: 1rem;
    }

    .faq-answer ul li {
        font-size: 1rem;
    }

    .faq-answer ul li i {
        font-size: 1.2rem;
    }
}