/* Contact page specific styles */
.page-title { font-size: 36px; color: white; margin-bottom: 20px; text-align: center; }
.content-section { background: white; padding: 40px; border-radius: 8px; box-shadow: 0 2px 8px rgba(0,0,0,0.1); margin-bottom: 30px; }

.contact-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 40px; margin-top: 30px; }

.contact-info h3 { color: #ff6b35; margin-bottom: 20px; font-size: 24px; }
.contact-item { margin-bottom: 20px; padding: 15px; background: #f9f9f9; border-radius: 8px; }
.contact-item strong { display: block; color: #333; margin-bottom: 5px; }
.contact-item p { color: #666; line-height: 1.6; }

.contact-form h3 { color: #ff6b35; margin-bottom: 20px; font-size: 24px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; margin-bottom: 8px; color: #333; font-weight: bold; }
.form-group input, .form-group textarea { width: 100%; padding: 12px; border: 1px solid #ddd; border-radius: 6px; font-family: 'Source Sans Pro', Arial, sans-serif; font-size: 14px; }
.form-group textarea { min-height: 150px; resize: vertical; }
.submit-btn { background: #ff6b35; color: white; border: none; padding: 12px 40px; border-radius: 6px; cursor: pointer; font-weight: bold; font-size: 16px; transition: background 0.3s; }
.submit-btn:hover { background: #f7931e; }

@media (max-width: 768px) {
    .contact-grid { grid-template-columns: 1fr; }
}
