/* Override CSS สำหรับปรับขนาดหัวเรื่องในหน้า Contact */

/* หัวเรื่องหลัก - เพิ่มขนาดขึ้น 1 ขั้น */
.hero-title {
    font-size: 2rem !important; /* h2 size */
    line-height: 1.2 !important;
}

/* หัวเรื่องย่อยต่างๆ - เพิ่มขนาดขึ้น 1 ขั้น */
.contact-info-card h4,
.contact-info-card h6 {
    font-size: 1.25rem !important; /* h5 size */
}

.section-header h3,
.section-header h5 {
    font-size: 1.5rem !important; /* h4 size */
}

.contact-method-card h5,
.contact-method-card h6 {
    font-size: 1.25rem !important; /* h5 size */
}

.qr-header h4,
.qr-header h6 {
    font-size: 1.25rem !important; /* h5 size */
}

.faq-header h4,
.faq-header h6 {
    font-size: 1.25rem !important; /* h5 size */
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-title {
        font-size: 1.75rem !important;
    }
    
    .contact-info-card h6,
    .section-header h5,
    .contact-method-card h6,
    .qr-header h6,
    .faq-header h6 {
        font-size: 1.1rem !important;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 1.5rem !important;
    }
    
    .contact-info-card h6,
    .section-header h5,
    .contact-method-card h6,
    .qr-header h6,
    .faq-header h6 {
        font-size: 1rem !important;
    }
}