body {
    background-image: radial-gradient(circle 343px at 46.3% 47.5%, rgba(242,242,242,1) 0%, rgba(241,241,241,1) 72.9%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    text-align: center;
    font-family: 'Inter', sans-serif;
    color: #454545;
    overflow-x: hidden;
    margin: 0;
}

body::after {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('images/background.png') no-repeat center center;
    background-size: cover;
    opacity: 0.5;
    z-index: -1;
}

.content {
    z-index: 2;
    position: relative;
    width: 100%;
    max-width: 1100px;
    padding: 20px 10px;
    margin: 0 auto;
}

.logo img {
    max-width: 300px;
    padding-top: 20px;
}

.addresses {
    display: flex;
    gap: 40px;
    justify-content: center;
    align-items: flex-start;
    margin-top: 10px;
    margin-bottom: 10px;
    flex-wrap: wrap;
}

.address-column {
    text-align: center;
    font-size: 14px;
    line-height: 1.6;
    color: #454545;
    width: 100%;
    max-width: 350px;
}

.address-column strong {
    font-weight: 700;
    margin-right: 5px;
}

.address-column a {
    color: #454545;
    text-decoration: none;
    font-weight: 600;
}

.address-column a:hover {
    text-decoration: underline;
}

@media (min-width: 992px) {
    .address-column {
        flex: 0 0 350px;
        max-width: 350px;
    }
}

.card-container {
    display: flex;
    gap: 40px;
    justify-content: center;
    margin-top: 30px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.card-column {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 350px;
}

.card {
    background: #eef1f5;
    border-radius: 10px;
    text-align: center;
    max-width: 350px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.15);
    color: #454545;
    border: none;
    margin-bottom: 25px;
}

.card:hover {
    transform: scale(1.05);
}

.card h2 {
    font-size: 1.35em;
    font-weight: 800;
    padding-bottom: 10px;
    padding-top: 10px;
}

.card img {
    max-width: 100%;
    margin-bottom: 15px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.card p {
    font-size: 0.9em;
    color: #565656;
    margin: 0;
    padding: 0 40px 10px 40px;
}

a {
    text-decoration: none !important;
}

.button {
    margin: 30px 40px 40px 40px;
    background-color: #eef1f5;
    border-radius: 5px;
    border: 1px solid #454545;
    color: #454545;
    font-size: 0.9em;
    font-weight: 600;
    padding: 10px 20px;
}

.footer {
    text-align: center;
    padding: 30px 0;
    font-size: 14px;
    color: #454545;
    width: 100%;
}

@media (max-width: 767px) {
    .addresses,
    .card-container {
        flex-direction: column;
        align-items: center;
    }

    .footer {
        padding: 20px 10px;
    }
}
