.about-us-container {
    font-family: 'Kanit', sans-serif;
    text-align: center;
    color: rgba(0, 0, 0, 0.932);
}

.about-section {
    background: url('') no-repeat center center;
    background-size: cover;
    padding: 100px 20px 50px 20px;
}

.about-section h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1E90FF;
}

.company-description {
    max-width: 800px;
    margin: 0 auto;
    font-size: 18px;
    line-height: 1.8;
    background: rgba(255,255,255,0.2);
    padding: 20px;
    border-radius: 10px;
}

.team-section {
    padding: 50px 20px;
}

.team-section h3 {
    font-size: 28px;
    margin-bottom: 30px;
    color: #333;
    position: relative;
}

.team-section h3::after {
    content: "";
    display: block;
    width: 60px;
    height: 3px;
    background-color: #1E90FF;
    margin: 10px auto 0 auto;
    border-radius: 2px;
}

.employee-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
}

.employee-card {
    background: #fff;
    color: #333;
    padding: 30px 20px;
    border-radius: 12px;
    width: 220px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transition: transform 0.3s;
}

.employee-card:hover {
    transform: translateY(-10px);
}

.employee-img {
    width: 120px;
    height: 120px;
    margin: 0 auto 15px auto;
    border-radius: 50%;
    border: 2px solid #1E90FF;
    overflow: hidden;
}

.employee-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.employee-card h4 {
    margin: 10px 0 5px 0;
    font-size: 18px;
    color: #1E90FF;
}

.employee-card p {
    font-size: 14px;
    color: #555;
}
