.hero-about-section {
    padding: 100px 0;
    background-color: #ffffff;
    position: relative;
}

.hero-about-header {
    margin-bottom: 60px;
}

.hero-about-title {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.2;
    color: #1e293b;
    margin-bottom: 24px;
    position: relative;
    display: inline-block;
    padding-bottom: 20px;
}

.hero-about-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 160px;
    height: 4px;
    background: linear-gradient(90deg, #0066cc, #3b82f6);
    border-radius: 2px;
}

.hero-about-body {
    align-items: center;
}

.hero-about-description {
    font-size: 18px;
    line-height: 1.7;
    color: #64748b;
    margin-bottom: 40px;
    max-width: 600px;
}

.hero-about-actions {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.video-container {
    flex: 0 0 40%;
    position: relative;
}

.video-wrapper {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    background: #f8f9fa;
}

.video-wrapper:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 102, 204, 0.05), rgba(0, 102, 204, 0.02));
    z-index: 1;
    pointer-events: none;
}

.btn-secondary {
    background: #ffffff;
    color: #0066cc;
    border: 2px solid #0066cc;
    box-shadow: 0 4px 12px rgba(0, 102, 204, 0.1);
}

.btn-secondary:hover {
    background: #0066cc;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 102, 204, 0.3);
}

.mt-8 {
    margin-top: 40px;
}

.ml-80 {
    margin-left: 80px;
}

@media (max-width: 1024px) {
    .hero-about-title {
        font-size: 48px;
    }
    
    .video-container {
        flex: 0 0 45%;
    }
    
    .ml-80 {
        margin-left: 40px;
    }
}

@media (max-width: 768px) {
    .hero-about-section {
        padding: 80px 0;
    }
    
    .hero-about-header {
        margin-bottom: 40px;
    }
    
    .hero-about-title {
        font-size: 36px;
        padding-bottom: 16px;
    }
    
    .hero-about-title::after {
        width: 120px;
    }
    
    .hero-about-body {
        flex-direction: column;
    }
    
    .hero-about-description {
        font-size: 16px;
    }
    
    .hero-about-actions {
        flex-direction: column;
        gap: 16px;
    }
    
    .video-container {
        flex: 0 0 100%;
        margin-left: 0;
        margin-top: 40px;
    }
    
    .btn-lg {
        width: 100%;
        justify-content: center;
    }
}

.resources-section {
    padding: 50px 0 40px;
    background-color: #ffffff;
}

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

.section-header {
    margin-bottom: 40px;
}

.section-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #2d3748;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6, #60a5fa);
    border-radius: 2px;
}

.text-primary {
    color: #3b82f6;
}

.section-subtitle {
    font-size: 18px;
    color: #718096;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.resource-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.resource-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.resource-link {
    display: block;
    text-decoration: none;
    color: inherit;
    height: 100%;
}

.resource-image {
    position: relative;
    padding-top: 66.67%; /* 3:2 aspect ratio - optimal for SEO and visual appeal */
    height: 0;
    overflow: hidden;
}

.card-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    display: block;
    max-width: 100%;
    border-radius: 16px 16px 0 0;
}

.resource-card:hover .card-img {
    transform: scale(1.1);
}

.resource-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 10;
}

.resource-badge.hot {
    background: linear-gradient(90deg, #ef4444, #f87171);
    color: #fff;
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3);
}

.resource-content {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.resource-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    font-size: 14px;
    color: #666;
}

.resource-date {
    font-weight: 500;
    color: #333;
}

.resource-category {
    display: flex;
    align-items: center;
    background: #f0f8ff;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
}

.resource-category i {
    margin-right: 6px;
    color: #0066cc;
    font-size: 10px;
}

.resource-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #333;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.resource-card:hover .resource-title {
    color: #0066cc;
}

.resource-excerpt {
    font-size: 15px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex: 1;
}

.resource-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 16px;
    border-top: 1px solid #f0f0f0;
    margin-top: auto;
}

.resource-author {
    font-size: 14px;
    font-weight: 500;
    color: #333;
}

.resource-read-more {
    font-size: 14px;
    font-weight: 600;
    color: #0066cc;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.resource-read-more:hover {
    color: #004c99;
    transform: translateX(4px);
}

.resource-read-more i {
    margin-left: 6px;
    font-size: 16px;
}

.no-resources {
    grid-column: 1 / -1;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: #0066cc;
    color: #fff;
    box-shadow: 0 4px 12px rgba(0, 102, 204, 0.3);
}

.btn-primary:hover {
    background: #004c99;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 102, 204, 0.4);
}

.btn-lg {
    padding: 16px 40px;
    font-size: 18px;
}

.mt-6 {
    margin-top: 30px;
}

.mt-12 {
    margin-top: 48px;
}

.mb-12 {
    margin-bottom: 40px;
}

.py-12 {
    padding-top: 48px;
    padding-bottom: 48px;
}

.text-center {
    text-align: center;
}

.text-muted {
    color: #999;
}

@media (max-width: 768px) {
    .resources-section {
        padding: 50px 0 30px;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .resources-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .resource-content {
        padding: 20px;
    }
    
    .resource-title {
        font-size: 18px;
    }
    
    .resource-excerpt {
        font-size: 14px;
    }
}

/* Adjust spacing for services section */
.hkjnxetwrtt {
    margin-top: 6.25rem !important; /* Reduced by half from 12.5rem */
}