/* ======================
   CONTACT PAGE STYLES
   ====================== */

/* Container */
.contact-container {
    max-width: 800px;
    margin: 40px auto;
    padding: 0 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

/* Contact Methods */
.contact-method {
    background: #f8f8f8;
    padding: 25px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    width: 100%;
    max-width: 350px;
}

.contact-method h2 {
    margin-top: 0;
    color: #333;
}

.contact-options {
    text-align: left;
    padding-left: 20px;
    margin: 20px 0;
}

.contact-options li {
    margin-bottom: 8px;
}

/* Contact Form */
.contact-form {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    width: 100%;
    max-width: 350px;
}

.contact-form h2 {
    margin-top: 0;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #333;
}

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

textarea {
    min-height: 150px;
    resize: vertical;
}

.submit-btn {
    background: #4CAF50;
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 4px;
    font-size: 1em;
    cursor: pointer;
    transition: background 0.3s;
    width: 100%;
}

.submit-btn:hover {
    background: #45a049;
}

/* Responsive Adjustments */
@media (max-width: 800px) {
    .contact-container {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-method,
    .contact-form {
        max-width: 100%;
    }
}

@media (max-width: 600px) {
    .contact-container {
        padding: 0 15px;
    }
    
    .contact-method,
    .contact-form {
        padding: 20px;
    }
}