/* Styling unordered lists with square bullets */
ul {
    list-style-type: square;
}

/* Styling for the global service section */
.global-service {
    width: 100%;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.global-service-header {
    width: 60%;
    margin-top: 20px;
    margin-bottom: 20px;
}

.global-service-text {
    width: 60%;
    margin: auto;
    margin-bottom: 35px;
    text-align: justify;
}

.global-service-button {
    margin-bottom: 20px;
}

/* Button styling */
.btn-3 {
    background-color: #D5BA8C;
    border: none;
    border-radius: 1px;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    display: inline-block;
    font-size: 1rem;
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    margin: 4px 2px;
    cursor: pointer;
    transition: 0.3s;
}

.btn-3:hover {
    background-color: #89aad7;
}
