/* General Styles */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

/* Hero Section */
.hero {
    background-image: url('assets/images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 80px 0;
}

.hero .display-4 {
    font-size: 3rem;
    font-weight: 700;
}

.hero .btn {
    font-size: 1.25rem;
    padding: 10px 25px;
}

/* Features Section */
.features .card {
    border: none;
    margin-bottom: 30px;
}

.features .card img {
    height: 200px;
    object-fit: cover;
}

/* Services Section */
.services h4 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.services p {
    font-size: 1rem;
    color: #555;
}

/* Footer */
footer {
    background-color: #343a40;
    color: white;
}

footer p {
    margin-bottom: 0;
}

/* Contact Form */
.contact form input, .contact form textarea {
    border-radius: 0.25rem;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .hero .display-4 {
        font-size: 2.5rem;
    }
    .features .col-lg-4 {
        margin-bottom: 30px;
    }
}

/* Custom Typography */
h1, h2, h5 {
  letter-spacing: -0.5px;
}

/* CTA Button */
.btn-lg {
  font-weight: 600;
  border-radius: 50px;
  padding: 12px 30px;
}

