.social-media-section {
    position: relative;
    padding: 100px 0;
    min-height: 80vh;
    display: flex;
    align-items: center;
    background-image: url('/img/background-social-media.jpeg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
}
.content-box {
    background: rgba(255, 255, 255, 0.95);
    padding: 50px;
    border-radius: 20px;
    max-width: 600px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.badge {
    color: #4D57FF;
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.content-box h2 {
    font-size: 2.5rem;
    margin: 15px 0;
    color: #1A1A1A;
}

.content-box p {
    color: #4A4A4A;
    line-height: 1.6;
    margin-bottom: 30px;
}

.cta-group {
    display: flex;
    gap: 15px;
}

.btn-primary {
    background: #4D57FF;
    color: white;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
}

.btn-secondary {
    background: transparent;
    color: #1A1A1A;
    border: 1px solid #1A1A1A;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
}