/* Contact form Page Styles */

body {
    font-family: Arial, sans-serif;
    background: #f5f5f5;
    margin: 0;
    padding: 0;
}

.form-container {
    width: 90%;
    max-width: 700px;
    background: #fff;
    padding: 25px;
    margin: 30px auto;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

h2 {
    text-align: center;
    margin-bottom: 20px;
}

label {
    display: block;
    margin-top: 15px;
    font-weight: bold;
}

input[type="text"],
input[type="email"],
textarea {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.two-columns {
    display: flex;
    gap: 20px;
}

.two-columns div {
    flex: 1;
}

.checkbox-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px 5px;
    margin-top: 10px;
}

.checkbox-grid label {
    font-weight: normal;
}

button {
    width: 100%;
    padding: 12px;
    margin-top: 25px;
    border: none;
    background: #007bff;
    color: white;
    font-size: 16px;
    cursor: pointer;
    border-radius: 5px;
}

button:hover {
    background: #0056b3;
}

/* Mobile responsive */
@media (max-width: 600px) {
    .two-columns {
        flex-direction: column;
    }

    .checkbox-grid {
        grid-template-columns: repeat(1, 1fr);
    }
}

.success-box {
    width: 90%;
    max-width: 500px;
    margin: 80px auto;
    background: #ffffff;
    padding: 30px;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 0 12px rgba(0,0,0,0.1);
}

.success-box h2 {
    color: #28a745;
    margin-bottom: 10px;
}

.back-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 20px;
    background: #007bff;
    color: white;
    text-decoration: none;
    border-radius: 5px;
}

.back-btn:hover {
    background: #0056b3;
}