.contact-content {
    max-width: 100%;
    padding: 50px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.contact-title {
    font-family: "Kaushan Script", cursive;
    color: #386560;
    font-size: 3em;
    margin-bottom: 20px;
}

.contact-description {
    font-size: 1.3em;
    color: #555;
    margin-bottom: 20px;
}

.contact-email {
    color: #386560;
    font-weight: bold;
    font-size: 1em;
    text-decoration: none;
}

.contact-email:hover {
    text-decoration: underline;
}

.contact-closing {
    font-size: 1em;
    color: #777;
    font-style: italic;
}

.contact-stars {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 2em;
    color: #cfe4e2;
    opacity: 0.5;
    display: flex;
    gap: 10px;
}

.socials-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.social-box {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #f5f5f5;
    padding: 10px 20px;
    border-radius: 30px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
    font-weight: bold;
    color: #386560;
    transition: transform 0.3s ease;
}

.social-box:hover {
    transform: scale(1.05);
}

.social-icon {
    width: 24px;
    height: 24px;
}