body {
    background-color: #000;
    color: #fff;
    margin: 0;
    padding: 0;
}
.navbar {
    background-color: transparent;
    padding: 30px;
    margin-right: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.navbar-brand {
    margin-right: auto;
    padding-left: 50px;
}
.navbar-nav {
    display: flex;
    justify-content: center;
    flex: 1;
}
.navbar-nav .nav-link {
    color: #fff;
    font-size: 16px;
    margin: 0 40px;
    padding: 5px 15px;
    border: 2px solid #fff;
}
.navbar-nav .nav-link:hover {
    color: #00d1b2;
    border-color: #00d1b2;
}
.hero-section {
    position: relative;
    height: 100vh;
    background: url(media/hero.png) no-repeat center center;
    background-size: contain;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-top: 80px;
}
.hero-section h1 {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 20px;
}
.hero-section p {
    font-size: 1.2rem;
    margin-bottom: 40px;
}
.btn-schedule {
    background-color: #64C9DD;
    border: none;
    padding: 5px 15px;
    font-size: 18px;
    color: #000;
    position: absolute;
    bottom: 70px;
    right: 200px;
}
.btn-schedule:hover {
    background-color: #00b29a;
}
.about-section {
    background-color: #000;
    padding: 50px 80px;
}
.about-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.about-title {
    width: 100%;
    text-align: right;
    margin-bottom: 30px;
}
.about-box {
    width: 30%;
    padding: 30px;
    box-sizing: border-box;
    height: calc(100vh - 100px);
    transition: background-color 0.3s;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.about-box.active {
    background-color: #64C9DD;
}
.about-box h2 {
    font-size: 2rem;
    display: flex;
    align-items: center;
    color: #000;
}
.about-box h2 span {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #000;
    color: #64C9DD;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
}
.about-box p {
    font-size: 1rem;
    padding-top: 30px;
    text-align: justify;
    color: #000;
}
@media (max-width: 992px) {
    .about-box {
        width: 100%;
        height: auto;
    }
}
.how-it-works-section {
    padding: 50px 80px;
    background-color: #000;
}
.how-it-works-container {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}
.how-it-works-title {
    text-align: right;
    width: 100%;
    margin-bottom: 30px;
}
.how-it-works-img {
    width: 100%;
    height: auto;
}
.industries-section {
    background-color: #000;
    padding: 50px 15px;
    color: #fff;
    margin-left: 60px;
}

.industries-title {
    color: #fff;
    font-size: 36px;
    margin-bottom: 60px;
    margin-top: 20px;
}

.subtitle {
    color: #fff;
    font-size: 20px;
    font-weight: bold;
    margin-top: 20px;
}

.agriculture-content h4 {
    color: #fff;
    font-size: 18px;
    margin-top: 20px;
}

.agriculture-content ul,
.agriculture-content li,
.subtitle + ul {
    list-style-type: none;
    padding-left: 5px;
    padding-top: 15px;
    font-size: 15px;
}

.agriculture-content a {
    color: inherit;
    text-decoration: none;
}

.carousel-indicators button {
    background-color: #64C9DD;
}

.agriculture-content ul li:before, 
.subtitle + ul li:before {
    content: "";
    display: inline-block;
    width: 16px;
    height: 16px;
    background: url('media/icon-path.png') no-repeat center center;
    background-size: contain;
    margin-right: 10px;
}

.carousel-indicators button {
    background-color: #64C9DD;
}

.new-section {
    background: url('media/section5.png') no-repeat center center;
    background-size: cover;
    position: relative;
    text-align: center;
    padding: 60px 20px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.new-section img {
    width: 500px;
    height: auto;
    margin-right: 30px;
}
.new-section .text-overlay {
    color: #fff;
    font-size: 3.5rem;
    font-weight: bold;
    margin-right: auto;
}

.x-footer {
    padding: 50px 0;
}

.x-footer span {
    font-size: 12px;
}
.x-footer a {
    font-size: 14px;
    text-decoration: none;
}

.x-footer .social img {
    width: 30px;
    margin: 10px;
}

.x-list {
    margin-bottom: 5px;
    margin-right: 10px;
    list-style-type: none; 
    padding: 0; 
}

.x-list a {
    color: white; 
    text-decoration: none; 
    margin-right: 10px;
}

.x-list a:hover {
    color: #64C9DD;
}

@media (max-width: 1200px) {
    .new-section img {
        width: 400px;
    }

    .new-section .text-overlay {
        font-size: 3rem;
    }
}

@media (max-width: 992px) {
    .new-section {
        flex-direction: column;
        align-items: center;
        padding: 40px 20px;
    }

    .new-section img {
        width: 300px;
        margin-right: 0;
        margin-bottom: 20px;
    }

    .new-section .text-overlay {
        font-size: 2.5rem;
        margin-right: 0;
    }
}

@media (max-width: 768px) {
    .new-section img {
        width: 250px;
    }

    .new-section .text-overlay {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .new-section {
        padding: 30px 10px;
    }

    .new-section img {
        width: 200px;
    }

    .new-section .text-overlay {
        font-size: 1.5rem;
    }
}