/* Hero Section */
.hero {
    position: cover;
    height: 500px;
    width: 100vw;
    overflow: hidden;
    margin: 0;
    padding: 0;
    transform: translateX(-9%);
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    overflow: hidden;
    filter: brightness(90%);
}

.hero-text {
    position: absolute;
    top: 40%;
    margin-left: 50px;
    color: #fff;
    text-align: center;
}

.hero-text h1 {
    font-size: 3rem;
    font-family: 'Lato', sans-serif;
}

/* Additional Sections */
.additional-section {
    padding: 20px;
    background-color: #f9f9f9;
    margin-top: 20px;
    margin-bottom: 20px;
}

.section-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.section-item {
    flex: 1;
    margin: 10px;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}