/* Contact Page Specific Styles */
form {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    margin-top: 20px;
    position: relative;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 5px;
    font-size: 1.2em;
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-sizing: border-box;
    font-size: 0.9em;
}

.form-group textarea {
    height: 120px;
    resize: none;
}

button[type="submit"] {
    background-color: #333;
    color: #fff;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 5px;
    font-size: 1em;
}

button[type="submit"]:hover {
    background-color: #555;
}

/* Formspree Indicator Styles */
.form-indicator {
    font-size: 0.875em;
    color: #888;
    text-align: left; /* Center the indicator */
    margin-top: 20px; /* Space above the indicator */
    margin-bottom: -25px;
}

.form-indicator a {
    color: #888;
    text-decoration: none;
}

.form-indicator a:hover {
    text-decoration: underline;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    form {
        width: 90%;
    }
}

@media (max-width: 480px) {
    form {
        width: 90%;
    }
}
