/* Subpages Styling */
.subpage-body {
    background-color: #f7f9fc;
    color: #333;
    font-family: var(--font-primary);
}

.subpage-container {
    max-width: 600px;
    margin: 50px auto;
    padding: 20px;
    text-align: center;
}

.subpage-header {
    margin-bottom: 40px;
}

.back-link {
    color: #333;
    text-decoration: underline;
    font-size: 0.9rem;
    margin-bottom: 2rem;
    display: inline-block;
}

.contact-form {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    text-align: left;
}

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

.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
}

.btn-submit {
    width: 100%;
    background-color: #bf9e7a;
    color: white;
    padding: 15px;
    border: none;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-submit:hover {
    background-color: #a68a6a;
}
