/* styles.css - Your custom CSS can override Bootstrap where needed */
body { font-family: Arial, sans-serif; background: #ffffff; color: #000000; margin: 0; padding: 0; line-height: 1.6; }
header { background: #ffffff; padding: 1rem; text-align: center; border-bottom: 1px solid #ddd; }
header h1 { margin: 0; color: #000000; font-size: 2rem; }
nav ul { list-style: none; display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; padding: 0; margin: 0.5rem 0; }
nav a { color: #000000; text-decoration: none; font-weight: bold; }
nav a:focus { outline: 2px solid #000000; outline-offset: 2px; }
.section-gray { background: #f8f8f8; padding: 2rem 0; text-align: center; }
main { max-width: 1200px; margin: 0 auto; padding: 0 1rem; }
.hero { display: flex; justify-content: space-between; align-items: flex-start; gap: 2rem; margin: 2rem 0; flex-wrap: nowrap; }
.hero-text { flex: 1; }
.hero-text h2 { font-size: 2.5rem; margin-bottom: 1rem; }
.hero-text p { margin-bottom: 1rem; font-size: 1rem; color: #444444; }
.hero-form { display: flex; gap: 0.5rem; margin-bottom: 1rem; }
.hero-form input { padding: 0.5rem; border: 1px solid #ddd; border-radius: 4px; flex: 1; }
.hero-form input:focus { outline: 2px solid #000000; outline-offset: 2px; }
.hero-form button { background: #ddd; border: none; padding: 0.5rem; border-radius: 4px; cursor: pointer; }
.hero-form button:focus { outline: 2px solid #000000; outline-offset: 2px; }
.hero img { flex: 0 0 40%; max-width: 40%; height: auto; border-radius: 8px; object-fit: cover; box-shadow: 0 2px 4px rgba(0,0,0,0.1); }
.cta-button { background: #000000; color: #ffffff; padding: 0.5rem 1rem; border: none; cursor: pointer; text-decoration: none; border-radius: 50px; font-size: 0.9rem; }
.cta-button:focus { outline: 2px solid #ffffff; outline-offset: 2px; background: #333333; }
.services { display: flex; gap: 2rem; margin-bottom: 2rem; align-items: center; }
.services img { flex: 0 0 40%; max-width: 40%; height: auto; border-radius: 8px; box-shadow: 0 2px 4px rgba(0,0,0,0.1); }
.services-text { flex: 1; }
.services-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-bottom: 2rem; }
.card { text-align: left; padding: 1rem; background: #ffffff; border-radius: 8px; box-shadow: 0 2px 4px rgba(0,0,0,0.1); }
.card h3 { font-size: 1.2rem; margin-bottom: 0.5rem; }
.card p { font-size: 0.9rem; color: #444444; }
.card:focus-within { outline: 2px solid #000000; outline-offset: 2px; }
.benefits-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
footer {
    background: #f8f8f8;
    text-align: center;
    padding: 2rem 1rem;
    border-top: 1px solid #ddd;
    font-size: 0.9rem;
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
footer p {
    margin: 0.25rem 0;
}
.footer-content {
    max-width: 800px;
    margin: 0 auto;
}
@media (max-width: 768px) { .hero, .services { flex-direction: column; align-items: center; text-align: center; } .hero img, .services img { max-width: 100%; } .services-cards, .benefits-cards { grid-template-columns: 1fr; } }
/* Custom overrides for Bootstrap accordion if needed */
.accordion-flush .accordion-item {
    border-bottom: 1px solid #ddd; /* Add subtle borders */
}
.accordion-button:not(.collapsed) {
    background-color: #eee; /* Match your theme */
}
.accordion-button:focus {
    outline: 2px solid #000000; outline-offset: 2px;
}