body {
    font-family: 'Work Sans', sans-serif;
    background-color: #79afaf;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.bg-teal {
    background: #3b6e70;
    background: linear-gradient(95deg, rgba(59, 110, 112, 1) 57%, rgba(247, 186, 64, 1) 57%);
    box-shadow: 0 0 50px #000;
    width: 90%;
}

.logo {
    width: 100px;
    height: auto;
    border-radius: 50%;
}

.icon {
    width: 24px;
    height: 24px;
}

.contact-container {
    padding: 40px;
}

.form-control,
.form-select {
    border-radius: 10px;
}

.btn-submit {
    background-color: rgba(247, 186, 64, 1) !important;
    color: white !important;
    border-radius: 10px;
}

.address-box {
    background-color: #3b6e70;
    color: white;
    font-size: 25px;
    padding: 15px;
    border-radius: 10px;
}

.contact-footer {
    background-color: #006a71;
    color: white;
    text-align: center;
    padding: 10px 0;
}

.contact-footer a {
    color: #fff;
    text-decoration: underline;
}

.pro-about-footer {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    background-color: transparent;
    text-align: center;
}

.pro-about-footer p,
.pro-about-footer a {
    background-color: transparent;
    font-size: 1rem;
    color: aliceblue;
    text-decoration: none;
}

.pro-about-footer a {
    color: #e8ecf7;
    text-decoration: underline;
}

.pro-about-footer a:hover {
    text-decoration: underline;
    color: dodgerblue;
}

@media (max-width: 768px) {
    .bg-teal {
        width: 95%;
    }

    .contact-container {
        padding: 30px;
    }

    .address-box {
        font-size: 1.2rem;
        padding: 10px;
    }

    .navbar-nav .nav-link {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    body {
        padding: 5px;
    }

    .btn-submit {
        font-size: 1rem;
        width: 100%;
    }

    .address-box {
        font-size: 1rem;
    }

    .form-control,
    .form-select {
        width: 100% !important;
    }

    .contact-container {
        width: 100%;
        padding: 20px;
    }

    .navbar-nav .nav-link {
        font-size: 0.9rem;
    }
}

@media (max-width: 991px) {
    body {
        background-color: rgba(247, 186, 64, 1) !important;
    }

    .bg-teal {
        width: 100%;
        background: #3b6e70;
    }
}