body {
    background-color: #000;
    color: #c9d69f; /* Green text */
}

.hero-section {
    background-image: url('https://via.placeholder.com/1920x800'); /* Replace with your background image */
    background-size: cover;
    background-position: center;
    height: 60vh; /* Smaller height */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    padding: 20px;
}

.hero-section h1 {
    font-size: clamp(2.5rem, 8vw, 4rem); /* Responsive font size */
    font-weight: bold;
    color: #f07f3d; /* New orange */
}

.hero-section p {
    font-size: clamp(1.2rem, 4vw, 1.5rem); /* Responsive font size */
    color: #f07f3d; /* New orange */
}

.carousel-section {
    margin-top: 40px;
}

.carousel-item img {
    height: 500px;
    object-fit: cover;
}

.contact-section {
    padding: 60px 0;
    background-color: #000; /* Matches the rest of the page */
}

.contact-section h2 {
    color: #f07f3d; /* New orange */
    font-size: clamp(2rem, 6vw, 3rem); /* Responsive font size */
}

.contact-section a {
    color: #42bff6; /* Blue accent */
    text-decoration: none;
}

.contact-section a:hover {
    text-decoration: underline;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: #42bff6; /* Blue accent */
    border-radius: 50%;
    padding: 10px;
}
