/* Main Styles */
:root {
    --main-bg-color: #aedb77;
    --main-text-color: #333;
    --hover-color: #f9f9f9;
    --transition-duration: 0.3s;
}

html, body {
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    width: 100%;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Roboto', Arial, sans-serif;
    background-color: #f9f9f9f4;
    color: var(--main-text-color);
}

.logo img {
    width: 100px;
    height: auto;
}

/* Large Image */
.big-image__img {
    background: url('../images/aboutus.jpeg') no-repeat center center;
    background-size: cover;
    height: 60vh;
    width: 100%;
    position: relative;
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0));
}

/* Main Text */
.main-text {
    padding: 40px 30px;
    font-size: 18px;
    color: var(--main-text-color);
    line-height: 1.6;
    max-width: 1200px;
    margin: 0 auto;
}

.main-text__points {
    margin-top: 20px;
    list-style-type: disc;
    margin-left: 40px;
    color: #6e9340;
}
