body {
    font-family: 'Inter', sans-serif;
    background-color: #f8f9fa; 
    color: #343a40; 
}
.accent-green { color: #28a745; }
.accent-green-bg { background-color: #28a745; }
.accent-green-bg-hover:hover { background-color: #218838; }
.accent-blue { color: #007bff; }
.accent-blue-bg { background-color: #007bff; }
.accent-blue-bg-hover:hover { background-color: #0056b3; }

.section {
    padding: 48px 24px; 
}
.card {
    background-color: white;
    border-radius: 12px;
    padding: 28px;
    box-shadow: 0 6px 12px rgba(0,0,0,0.07);
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
    display: flex;
    flex-direction: column;
}
.card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}
.button {
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 600;
    transition: background-color 0.2s ease, transform 0.1s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    text-align: center;
}
.button:active {
    transform: scale(0.97);
}

.button-primary {
    background-color: #28a745; 
    color: white;
}
.button-primary:hover {
    background-color: #218838;
}
.button-secondary {
    background-color: #6c757d; 
    color: white;
}
.button-secondary:hover {
    background-color: #5a6268;
}

select, input[type="text"], input[type="email"], input[type="tel"], input[type="search"], input[type="password"] {
    border: 1px solid #ced4da; 
    padding: 12px 16px; 
    border-radius: 8px; 
    width: 100%;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    font-size: 1rem;
}
select:focus, input:focus {
    outline: none;
    border-color: #28a745;
    box-shadow: 0 0 0 3px rgba(40, 167, 69, 0.25);
}
.view { display: none; }
.view.active { display: block; animation: fadeIn 0.5s ease-out; }

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero-bg {
     background: linear-gradient(135deg, #e0f2f7 0%, #d1e7dd 100%); 
}
header nav a.active-nav {
    color: #28a745;
    font-weight: 600;
    border-bottom: 2px solid #28a745;
}
.star-rating span {
    color: #ffc107; 
}
.provider-list-item {
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.05);
    transition: box-shadow 0.2s ease-in-out;
}
.provider-list-item:hover {
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
}
.pricing-tier-card {
    border: 1px solid #e2e8f0;
    display: flex;
    flex-direction: column;
    height: 100%; 
}
.pricing-tier-card .features-list {
    flex-grow: 1; 
}
.pricing-tier-card.recommended {
    border-color: #28a745;
    border-width: 2px;
    box-shadow: 0 0 15px rgba(40, 167, 69, 0.2);
    position: relative; 
}
 .recommended-badge {
    position: absolute;
    top: -1px; 
    right: -1px; 
    background-color: #28a745;
    color: white;
    font-size: 0.75rem; 
    font-weight: 600;
    padding: 0.25rem 0.75rem; 
    border-top-right-radius: 10px; 
    border-bottom-left-radius: 10px;
}
.provider-image-placeholder, .profile-gallery-image {
    background-color: #e9ecef;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6c757d; 
    font-size: 0.875rem;
    text-align: center;
    line-height: 1.2;
    aspect-ratio: 4/3; 
    object-fit: cover; 
    border-radius: 8px;
}
.profile-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 0.75rem; 
}
.review-item {
    border-bottom: 1px solid #e9ecef;
    padding-bottom: 1rem;
    margin-bottom: 1rem;
}
.review-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}
