﻿.contact-container {
    max-width: 800px;
    margin: 40px auto;
    padding: 30px;
    background-color: #fff;
    box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    text-align: center;
}

    .contact-container h2 {
        font-size: 32px;
        margin-bottom: 20px;
        color: #2980b9;
    }

    .contact-container p {
        font-size: 16px;
        color: #34495e;
        margin-bottom: 40px;
    }

.contact-details {
    text-align: left;
    margin-bottom: 40px;
}

    .contact-details h3 {
        font-size: 20px;
        color: #2980b9;
    }

    .contact-details p {
        font-size: 16px;
        color: #2c3e50;
    }

.contact-form .input-field,
.contact-form .textarea-field {
    width: 100%;
    padding: 12px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 14px;
}

.contact-form .textarea-field {
    height: 150px;
}

.contact-form .submit-button {
    background-color: #2980b9;
    color: #fff;
    padding: 12px 20px;
    font-size: 16px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

    .contact-form .submit-button:hover {
        background-color: #3498db;
    }
