* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background: #fff;
}

.hero {
    position: relative;
    width: 100%;
    height: 350px;
    background: url("../../../../assets/images/about/image.png") center/cover no-repeat;
    display: flex;
    align-items: center;
    padding-left: 60px;
    color: white;
}

.hero .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.55);
}

 .hero-content {
    position: relative;
    max-width: 600px;
}

.hero-content h1 {
    font-size: 45px;
    font-weight: 700;
    margin-bottom: 15px;
}

.hero-content p {
    font-size: 16px;
    line-height: 1.6;
}

/* BOTTOM GREEN NAVIGATION */
.bottom-nav {
    width: 100%;
    background: #00a6a6;
    padding: 15px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.bottom-nav a {
    color: white;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
}

.bottom-nav a:hover {
    text-decoration: underline;
}
