.welcome-section {
    text-align: center;
    padding: 3rem 1rem;
}

.description {
    max-width: 800px;
    margin: 2rem auto;
    line-height: 1.6;
    color: var(--text-color);
    font-size: 1.1rem;
    padding: 0 1rem;
}

.social-links {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

.social-links h2 {
    text-align: center;
    color: var(--text-color);
    margin-bottom: 2rem;
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    justify-items: center;
}

.social-item {
    background: var(--secondary-color);
    border-radius: 10px;
    padding: 1.5rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    width: 100%;
    max-width: 300px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.social-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.social-item img {
    width: 120px;
    height: 120px;
    margin-bottom: 1rem;
    border-radius: 5px;
    object-fit: contain;
}

.social-item span {
    display: block;
    color: var(--text-color);
    font-family: 'Cinzel', serif;
    font-size: 1.2rem;
}

@media screen and (max-width: 768px) {
    .description {
        font-size: 1rem;
    }

    .social-grid {
        gap: 1rem;
    }

    .social-item {
        padding: 1rem;
    }
}

.legal-footer {
    background: var(--secondary-color);
    padding: 2rem 1rem;
    margin-top: 3rem;
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-color);
    opacity: 0.8;
}

.legal-footer p {
    margin: 0.5rem auto;
    max-width: 800px;
    line-height: 1.4;
}

.legal-footer a {
    color: var(--accent-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.legal-footer a:hover {
    color: var(--text-color);
}

@media screen and (max-width: 768px) {
    .legal-footer {
        font-size: 0.8rem;
        padding: 1.5rem 1rem;
    }
}

.partner-section {
    margin-top: 2rem;
}

.partner-description {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--text-color);
    line-height: 1.4;
    opacity: 0.9;
}

@media screen and (max-width: 768px) {
    .partner-description {
        font-size: 0.8rem;
    }
}