a {
    text-decoration: none;
}

#banner {
    background-color: #1c1c1c;
    height: 200px;
}

#navbarResponsive {
    justify-content: flex-end;
}

#navbarResponsive a {
    text-decoration: none;
}

.about-section {
    padding: 200px 0;
}

.about-section .about-image::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #0c4128;
    right: -50px;
    bottom: -50px;
}

.about-section .about-image img {
    width: 100%;
    object-fit: cover;
}

#defects {
    padding: 100px 0;
}

#defects .defect-item {
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.4);
    text-align: center;
    height: 100%;
    padding: 50px 30px;
    border-radius: 30px;
}

footer {
    padding: 100px 0;
    background-color: var(--bs-gray-dark);
}

footer .footer-logo img {
    width: 250px;
    filter: brightness(0) invert(1);
}

footer .menu {
    padding: 0;
    margin: 0;
    list-style: none;
}

footer .menu li a {
    color: white;
    transition: all 0.3s ease-in-out;
}

footer .menu li a:hover {
    opacity: 0.7;
}

@media (max-width: 991px) {
    .navbar-brand img {
        width: 300px;
    }

    .about-section .about-image {
        margin: 0 0 100px;
    }
}

@media (max-width: 767px) {
    .navbar-brand img {
        width: 200px;
    }
}