/* General Styles */
body {
    background-color: #F8FAFC;
    color: #1F2937;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    line-height: 1.6;
}

/* Hero Section */
.hero-section {
    padding: 80px 0;
    background-color: #ffffff;
    margin-bottom: 40px;
}

.hero-heading {
    font-size: 40px;
    font-weight: 700;
    color: #1F2937;
    margin-bottom: 16px;
}

.hero-subtext {
    font-size: 16px;
    color: #4B5563;
    max-width: 600px;
    margin: 0 auto;
}

/* Contact Section */
.contact-section {
    padding: 40px 0;
}

.section-heading {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 24px;
    color: #1F2937;
}

.contact-form {
    background-color: #ffffff;
    padding: 32px;
    border-radius: 8px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.form-control {
    padding: 12px;
    border-radius: 6px;
    border: 1px solid #E5E7EB;
    font-size: 16px;
}

.form-control:focus {
    border-color: #F59E0B;
    box-shadow: 0 0 0 0.25rem rgba(245, 158, 11, 0.25);
}

.form-label {
    font-weight: 500;
    color: #1F2937;
    margin-bottom: 8px;
}

.submit-btn {
    background-color: #F59E0B;
    color: #ffffff;
    font-weight: 500;
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

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

/* Contact Info */
.contact-info {
    background-color: #ffffff;
    padding: 32px;
    border-radius: 8px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    height: 100%;
}

.contact-item-title {
    font-size: 18px;
    font-weight: 600;
    color: #1F2937;
    margin-bottom: 8px;
}

.contact-item-text {
    font-size: 16px;
    color: #4B5563;
    margin-bottom: 0;
}

.map-placeholder {
    background-color: #E5E7EB;
    border-radius: 8px;
    overflow: hidden;
}

/* Quick Info Section */
.quick-info-section {
    padding: 60px 0;
}

.info-card {
    background-color: #ffffff;
    padding: 32px;
    border-radius: 8px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    height: 100%;
    text-align: center;
}

.info-icon {
    font-size: 32px;
    margin-bottom: 16px;
}

.info-title {
    font-size: 20px;
    font-weight: 600;
    color: #1F2937;
    margin-bottom: 12px;
}

.info-text {
    font-size: 16px;
    color: #4B5563;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .contact-section {
        padding: 20px 0;
    }
    
    .hero-heading {
        font-size: 36px;
    }
    
    .section-heading {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 60px 0;
    }
    
    .hero-heading {
        font-size: 32px;
    }
    
    .contact-form, .contact-info {
        padding: 24px;
    }
}