.elementor-4160 .elementor-element.elementor-element-7e2789a .gallery-item .gallery-caption{text-align:center;}/* Start custom CSS for html, class: .elementor-element-012cc68 *//* =========================================
   Base Styles & Resets
   ========================================= */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #191919; /* K90 Dark Grey */
    background-color: #ffffff;
    line-height: 1.6;
}

.container {
    max-w-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-center {
    text-align: center;
}
.btn-outline {
    background-color: transparent;
    color: #1e3a8a;
    border: 2px solid #1e3a8a;
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 10px;
    display: block;
    width: 100%;
}
.btn-outline:hover {
    background-color: #1e3a8a;
    color: #ffffff;
}
.section-title {
    font-size: 1.8rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 2rem;
    color: #191919;
}

/* =========================================
   1. Hero Section
   ========================================= */
.hero-section {
    background: linear-gradient(180deg, #f0f4f8 0%, #ffffff 100%);
    padding: 4rem 0;
}

.seo-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #191919;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.aeo-intro {
    font-size: 1.1rem;
    color: #4a4a4a;
    max-width: 800px;
    margin: 0 auto;
}

/* =========================================
   2. Product Catalog
   ========================================= */
.product-catalog {
    padding: 3rem 0;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.product-card {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 1.5rem;
    text-align: center;
    transition: box-shadow 0.3s ease;
    background: #fff;
}

.product-card:hover {
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.product-image-placeholder {
    background-color: #f5f5f5;
    height: 200px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    margin-bottom: 1rem;
}

.product-name {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.product-specs {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 1rem;
}

.product-price {
    font-size: 1.4rem;
    font-weight: bold;
    color: #1e3a8a; /* Professional Blue */
    margin-bottom: 1.5rem;
}

.btn-primary {
    background-color: #1e3a8a;
    color: #ffffff;
    border: none;
    padding: 10px 24px;
    font-size: 1rem;
    font-weight: bold;
    border-radius: 50px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #152c6b;
}

/* =========================================
   3. E-E-A-T Section
   ========================================= */
.eeat-section {
    background-color: #f8fafc;
    padding: 3rem 0;
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
}

.eeat-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem 4rem;
}

.eeat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.icon-circle {
    width: 60px;
    height: 60px;
    background-color: #e0e7ff;
    color: #1e3a8a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
}

.eeat-item span {
    font-weight: 600;
    font-size: 0.95rem;
}

/* =========================================
   4. Comparison Table
   ========================================= */
.comparison-section {
    padding: 4rem 0;
}

.table-responsive {
    overflow-x: auto;
}

.specs-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 700px;
}

.specs-table th, 
.specs-table td {
    border: 1px solid #e0e0e0;
    padding: 12px 16px;
    text-align: left;
}

.specs-table th {
    background-color: #1e3a8a;
    color: #ffffff;
    font-weight: 600;
}

.specs-table tbody tr:nth-child(even) {
    background-color: #f8fafc;
}

/* =========================================
   5. Educational Hub
   ========================================= */
.edu-hub-section {
    padding: 3rem 0;
    background-color: #ffffff;
}

.edu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}


.edu-card {
    cursor: pointer;
}

.edu-image-placeholder {
    width: 60%;    
    height: 180px;  
    object-fit: contain;
    background-color: #f9f9f9; 
    border-radius: 8px; 
}

.edu-card:hover .edu-image-placeholder {
    transform: translateY(-5px);
}

.edu-title {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}
.edu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    align-items: stretch;
}
.edu-card {
    display: flex;
    flex-direction: column;
    border: 1px solid #eee;
    padding: 15px;
    border-radius: 8px;
    background: #fff;
    height: 100%;
}

.edu-excerpt {
    flex-grow: 1;
    margin-bottom: 20px;
}

.read-more {
    font-size: 0.9rem;
    margin-top: auto; 
    display: block;
    font-weight: bold;
    color: #1e3a8a;
    text-decoration: none;
}
.edu-card:hover .edu-title {
    color: #1e3a8a;
}

.edu-excerpt {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 1rem;
}

/* =========================================
   6. Call To Action Section
   ========================================= */
.cta-section {
    padding: 4rem 0;
    background-color: #ffffff;
}

.cta-box {
    background: linear-gradient(135deg, #1062d8 0%, #0d469b 100%);
    border-radius: 20px;
    padding: 3.5rem 2rem;
    text-align: center;
    color: #ffffff;
    box-shadow: 0 10px 30px rgba(13, 70, 155, 0.15);
}

.cta-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.4;
}

.cta-description {
    font-size: 1rem;
    line-height: 1.6;
    margin: 0 auto 2.5rem auto;
    max-width: 800px;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.btn-secondary {
    background-color: #ffffff; 
    color: #1062d8;          
    padding: 14px 36px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease;
    display: inline-block;
    border: none;             
    cursor: pointer;
}

.btn-secondary:hover {
    background-color: #f0f4f8; ส์ชี้ */
    color: #0d469b;            /* เปลี่ยนสีตัวอักษรให้เข้มขึ้นเล็กน้อยเมื่อชี้ */
}

.cta-footer {
    font-size: 0.9rem;
    opacity: 0.9;
}

.cta-footer a {
    color: #ffffff;
    text-decoration: underline;
    font-weight: 600;
}

/* =========================================
   Media Queries (Updated for CTA)
   ========================================= */
@media (max-width: 768px) {
    .seo-title {
        font-size: 2rem;
    }
    
    .cta-box {
        padding: 2.5rem 1.5rem;
    }
    
    .cta-title {
        font-size: 1.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .btn-secondary {
        width: 100%;
        text-align: center;
    }
}/* End custom CSS */