/* Contact Page Specific Styles */
.contact-main {
    min-height: calc(100vh - 200px);
    background: #f5f5f5;
    padding: 20px 0;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.contact-section {
    background: #fff !important;
    padding: 40px 32px !important;
    margin-top: 20px !important;
    border-radius: 8px !important;
    border: 1px solid #eee !important;
}

.contact-section h1 {
    font-size: 2.5rem !important;
    margin-bottom: 16px !important;
    color: #333 !important;
}

.contact-section h2 {
    font-size: 1.8rem !important;
    margin-top: 32px !important;
    margin-bottom: 12px !important;
    color: #333 !important;
}

.contact-section > p {
    font-size: 1rem !important;
    color: #666 !important;
    margin-bottom: 16px !important;
    line-height: 1.6 !important;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 24px;
    max-width: 600px;
}

.form-field {
    display: flex;
    flex-direction: column;
}

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

.form-field input,
.form-field textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
}

.form-field textarea {
    resize: vertical;
}

.submit-btn {
    background: #ff5c1a;
    color: white;
    padding: 14px 32px;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.submit-btn:hover {
    background: #e04e0e;
}

.contact-info h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #333;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-method {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.contact-icon {
    background: #ff5c1a;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-method h4 {
    margin: 0 0 8px 0;
    font-size: 1.1rem;
    color: #333;
}

.contact-method p {
    margin: 0;
    color: #666;
}



/* About Page Styles */
.about-section {
    background: #fff !important;
    padding: 40px 32px !important;
    margin-top: 20px !important;
    border-radius: 8px !important;
    border: 1px solid #eee !important;
}

.about-section h1 {
    font-size: 2.5rem !important;
    margin-bottom: 24px !important;
    color: #333 !important;
}

.about-content {
    max-width: 900px;
}

.about-content p {
    font-size: 1.1rem !important;
    color: #555 !important;
    line-height: 1.8 !important;
    margin-bottom: 20px !important;
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-section {
        padding: 30px 20px !important;
    }

    .contact-section h1 {
        font-size: 2rem !important;
    }

    .contact-form {
        max-width: 100%;
    }
    
    .about-section {
        padding: 30px 20px !important;
    }
    
    .about-section h1 {
        font-size: 2rem !important;
    }
    
    .about-content p {
        font-size: 1rem !important;
    }
}
