#contact-content {
    display: flex;
    justify-content: space-around;
    align-items: center;
    color: #fff;
    margin-top: 30px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    padding: 2rem;
    background-color: #111;
    border: 1px solid #5f00ba;
    border-radius: 12px;
    box-shadow: 0 0 12px rgba(138, 43, 226, 0.3);
    width: 100%;
    max-width: 600px;
}

.contact-form label {
    color: #ccc;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.contact-form input,
.contact-form textarea {
    background-color: #000;
    border: 1px solid #5f00ba;
    color: #0ff;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    font-family: "Audiowide", sans-serif;
    border-radius: 8px;
    outline: none;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #9d4edd;
    box-shadow: 0 0 10px #9d4edd;
}

.contact-form textarea {
    resize: vertical;
    min-height: 150px;
}

#contact-info {
    width: 40%;
}

#contact-info div {
    width: 80%;
}

#contact-info div a {
    text-decoration: none;
}

#contact-info div img {
    width: 25%;
    margin: 2.5%;
    transition: all 0.3s ease;
}
#contact-info div img:hover {
    transform: scale(1.1);
}

@media only screen and (max-width: 767px) {
    #contact-content {
        flex-direction: column;
        align-items: center;
    }

    #contact-info {
        width: 100%;
        margin: 0;
    }

    .contact-form {
        width: 75%;
    }

    #contact-info div {
        width: 100%;
    }

    #contact-info div img {
        width: 20%;
        margin: 5%;
    }
}
