
.partners {
    display: flex;
    justify-content: space-around;
    margin: 40px 0;
}

.partner {
    background-color: var(--secondary-color);
    margin: 20px;
    border-radius: 10px;
    width: 20%;
    text-align: center;

    text-align:center;
    padding-bottom: 5px;
}

.service a {
    display: block; /* Ensure the anchor behaves like a block element */
    margin: 0 auto; /* Center the image within the button */

    border-style: solid;
    border-color: var(--main-brand-color);
    border-radius: 1vw;
    padding: 1vw;
    background-color: var(--light-secondary-color);
    color: var(--text-color);
    text-decoration: none;
}

.service p {
    padding-bottom: 3vw;
    width: 80%;
    margin-left: 2vw;
}

.service a:hover {
    background-color: var(--secondary-color);
}

.service h3 {
    color: var(--main-brand-color);
}

.service h2 {
    text-align: center;
}

.popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--light-secondary-color);
    padding: 20px;
    box-shadow: 0 0 10px rgba(0,0,0,0.3);
    border-radius: 10px;
    max-width: 500px;
    text-align: center;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

#popup:target {
    visibility: visible;
    opacity: 1;
}

#popup:target + .overlay {
    visibility: visible;
    opacity: 1;
}

.close {
    display: block;
    margin-top: 10px;
    padding: 5px 10px;
    background: red;
    color: white;
    text-decoration: none;
    border-radius: 5px;
}
