/* General Styles */
body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
}

/* Navigation */
.navbar {
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    margin-bottom: 0;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('images/hero-ai.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 75px 0;  /* Reduced from 355px to 75px */
    background-color: #f8f9fa;
    text-align: center;
    margin-top: 0;  /* Ensure no top margin */
}

/* Cards */
.card {
    transition: transform 0.3s ease;
    border: none;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.card:hover {
    transform: translateY(-5px);
}

.card-img-top {
    height: 333px;
    object-fit: cover;
    width: 100%;
}

/* Benefits Section */
#benefits .card {
    padding: 20px;
    text-align: center;
}

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

.form-control {
    border-radius: 0;
    border: 1px solid #ddd;
}

.form-control:focus {
    box-shadow: none;
    border-color: #007bff;
}

/* Footer */
footer {
    margin-top: 50px;
}

/* Image Styles */
.feature-image {
    width: 100%;
    min-height: 333px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}
