body {
    font-family: 'Inter', sans-serif;
    background-color: #BFBEB9;
    color: #000;
    padding: 50px 0;
}

.container {
    max-width: 1200px;
    margin: auto;
    padding: 0 30px;
    text-align: center;
}

.row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 40px;
}

.four-columns img,
.two-columns img {
    max-width: 100%;
    width: 100%;
    max-width: 200px;
    animation: fadeIn 2s ease-in-out;
}

.logo-container {
    margin-bottom: 30px;
}

.logo {
    max-width: 300px;
    margin: auto;
    display: block;
}

.center-text {
    text-align: center;
    margin-bottom: 20px;
}

.description {
    font-size: 18px;
    line-height: 1.6;
    padding: 0 50px;
    margin-bottom: 30px;
}

.visit-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #000;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
}

/* Animations */
@keyframes fadeIn {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
}

.fadeIn {
    animation: fadeIn 1.5s ease-out forwards;
}

/* Responsive */
@media (max-width: 768px) {
    .description {
        padding: 0 20px;
    }
}
