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 {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

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

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

.about-section p {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
    font-size: 1.1rem;
    color: #c9d69f; /* Green text */
}

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