.contact {
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('../images/background_image.png');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	background-attachment: fixed;
    text-align: center;
    padding: 50px 20px;
}

.contact-container {
    background: white;
    border: #0B1C49 6px solid;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    max-width: 600px;
    width: 100%;
    text-align: center;
    transition: 0.3s ease;
}

.contact h2 {
    font-size: 2.2em;
    color: #624CAB;
    margin-bottom: 10px;
}

.contact p {
    font-size: 1.1em;
    color: #333;
    margin-bottom: 20px;
}

.inputBox {
    margin-bottom: 15px;
}

.inputBox input,
.inputBox textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #ccc;
    border-radius: 6px;
    font-size: 1em;
    background: #f9f9f9;
    transition: 0.3s ease;
}

.inputBox input:focus,
.inputBox textarea:focus {
    border-color: #7189FF;
    background: #fff;
    outline: none;
}

.inputBox textarea {
    height: 120px;
    resize: none;
}

.button {
    width: 100%;
    background-color: #7189FF;
    color: white;
    border: none;
    padding: 12px;
    font-size: 1.2em;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s ease;
    border-radius: 6px;
}

.button:hover {
    background-color: #624CAB;
}

.mediaIcons {
    margin-top: 20px;
}

.mediaIcons a {
    font-size: 1.8em;
    color: #7189FF;
    margin: 0 10px;
    transition: color 0.3s ease;
}

.mediaIcons a:hover {
    color: #624CAB;
}

@media (max-width: 768px) {
    .contact-container {
        width: 90%;
        padding: 30px;
    }

    .contact h2 {
        font-size: 2em;
    }

    .contact p {
        font-size: 1em;
    }

    .inputBox input,
    .inputBox textarea {
        font-size: 0.9em;
    }

    .button {
        font-size: 1em;
        padding: 10px;
    }

    .mediaIcons a {
        font-size: 1.5em;
        margin: 0 8px;
    }
}

@media (max-width: 480px) {
    .contact-container {
        width: 95%;
        padding: 25px;
    }

    .contact h2 {
        font-size: 1.8em;
    }

    .contact p {
        font-size: 0.9em;
    }

    .inputBox input,
    .inputBox textarea {
        font-size: 0.85em;
        padding: 10px;
    }

    .button {
        font-size: 0.9em;
        padding: 10px;
    }

    .mediaIcons a {
        font-size: 1.3em;
        margin: 0 5px;
    }
}
