body {
    font-family: Arial, sans-serif;
    background-color: #f8f9fa;
    color: #333;
}
.navbar-brand span {
    color: blue; font-family: 'Courier New', Courier, monospace;
}

.hero-banner {
    height: 80vh;
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    position: relative;
}

.hero-banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.hero-text {
    position: relative;
    z-index: 2;
}

.hero-text h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.hero-text p {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.hero-text .btn {
    font-size: 1.2rem;
    padding: 10px 20px;
}

.section {
    padding: 60px 0;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.service-box {
    background-color: #ffffff;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.service-box h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.service-box p {
    font-size: 1.1rem;
    color: #333;
}

.contact-form {
    padding: 40px;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.contact-form .btn {
    font-size: 1.2rem;
    padding: 10px 20px;
}

footer {
    margin-top: 40px;
    background-color: #333;
    color: white;
    padding: 20px 0;
}

footer p {
    margin: 0;
}
