@import url('https://fonts.googleapis.com/css2?family=Homemade+Apple&family=Outfit:wght@100..900&family=Poiret+One&display=swap');


.socials {
    background: linear-gradient(135deg, #f4d7d7, #f7e8e8);
    padding: 60px 20px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
    margin-top: 40px;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.socialsContainer {
    text-align: center;
}

.socialsContainer h3 {
    font-size: 2.2rem;
    font-weight: bold;
    color: #2c3e50;
    margin-bottom: 40px;
    border-bottom: 2px solid #363636;
    display: inline-block;
    padding-bottom: 10px;
}

.socialLinks {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.socialLink {
    text-decoration: none;
    font-size: 1.1rem;
    color: #363636;
    transition: color 0.3s ease;
}

.socialLink:hover {
    color: #df9e9e;
}

/* Responsive Design */
@media (max-width: 768px) {

    .careerContainer h3,
    .socialsContainer h3 {
        font-size: 1.8rem;
    }

    .careerContainer p {
        font-size: 1rem;
    }

    .socialLinks {
        flex-direction: column;
        gap: 20px;
    }
}