/* Custom Styles for Ace Auto Group */

/* Body and General */
body {
    font-family: 'Arial', sans-serif;
    color: #333;
}

/* Navigation */
.navbar-brand {
    font-weight: bold;
}

/* Hero Section */
.hero-banner {
    background-color: #6c757d; /* Gray background */
    color: white;
    padding: 100px 0;
}

.hero-banner h1 {
    margin-bottom: 20px;
}

.hero-banner .btn-primary {
    background-color: #007bff;
    border-color: #007bff;
}

/* About Us Section */
#about h2 {
    color: #007bff;
    margin-bottom: 30px;
}

/* Services Section */
#services {
    background-color: #f8f9fa;
}

#services h2 {
    color: #007bff;
}

/* Gallery Section */
#gallery h2 {
    color: #007bff;
}

/* Contact Section */
#contact {
    background-color: #f8f9fa;
}

#contact h2 {
    color: #007bff;
}

/* Footer */
footer {
    background-color: #007bff;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero-banner .col-md-6 {
        text-align: center;
        margin-bottom: 30px;
    }
}