/* === BANNER STYLING === */
.banner {
    width: 100%;
    height: 250px; /* Adjust height as needed */
    background: url('/cargas/car.jpg') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    color: white;
    margin-top: 10px; /* Pushes banner below fixed navbar */
}

/* Banner Text */
.banner h1 {
    font-size: 36px;
    font-weight: bold;
    background: rgba(0, 0, 0, 0.6); /* Dark overlay for readability */
    padding: 15px 30px;
    border-radius: 5px;
}

@media screen and (max-width: 768px) {
    .banner {
        height: 150px; /* Reduce height on mobile */
    }

    .banner h1 {
        font-size: 28px; /* Reduce text size */
        padding: 10px 20px;
    }
}

/* === ABOUT US SECTION STYLING === */
.about-section {
    background-color: #ffffff; /* White background */
    padding: 60px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.about-container {
    max-width: 900px;
    background: black;
    padding: 50px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

/* Title Styling */
.about-title {
    font-size: 28px;
    font-weight: bold;
    color: white;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

/* Separator Line */
.separator {
    width: 100px;
    height: 3px;
    background: #ff9800; /* Orange highlight */
    margin: 10px auto 30px auto;
}

/* Text Styling */
.about-text {
    font-size: 16px;
    color: white;
    line-height: 1.8;
    text-align: center;
    margin-bottom: 15px;
}

/* Subheading */
.about-subtitle {
    font-size: 22px;
    font-weight: bold;
    color: #ff9800;
    margin-top: 30px;
}

/* List Styling */
.about-list {
    list-style-type: none;
    padding: 0;
    margin-top: 10px;
}

.about-list li {
    font-size: 16px;
    color: white;
    padding: 6px 0;
    text-align: center;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .about-container {
        padding: 30px;
    }

    .about-title {
        font-size: 24px;
    }

    .about-subtitle {
        font-size: 20px;
    }

    .about-text, .about-list li {
        font-size: 14px;
    }
}
