#content {
    background: #f8fafc;
    padding: 60px 0 90px;
}

.sotk-card {
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(13, 27, 62, 0.04);
    border: 1px solid rgba(13, 27, 62, 0.05);
    padding: 35px;
    margin-bottom: 50px;
    text-align: center;
}

.sotk-img-container {
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    background: #fafafa;
    border: 1px solid rgba(13, 27, 62, 0.05);
    margin-bottom: 25px;
}

.sotk-img-container img {
    max-width: 100%;
    height: auto;
    transition: transform 0.5s ease;
    display: block;
    margin: 0 auto;
}

.sotk-img-container:hover img {
    transform: scale(1.02);
}

.btn-view-full {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #0d1b3e;
    color: #ffffff !important;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 12px 28px;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(13, 27, 62, 0.15);
}

.btn-view-full:hover {
    background: #00a6a6;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 166, 166, 0.25);
}

.sotk-desc {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4b5563;
    max-width: 800px;
    margin: 0 auto 10px;
}

/* Personnel Section */
.personnel-section {
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(13, 27, 62, 0.04);
    border: 1px solid rgba(13, 27, 62, 0.05);
    padding: 50px 40px;
}

.personnel-title {
    color: #0d1b3e;
    font-weight: 800;
    font-size: 1.6rem;
    position: relative;
    margin-bottom: 35px;
    text-align: center;
}

.personnel-title::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background: #00a6a6;
    margin: 12px auto 0;
    border-radius: 2px;
}

/* Member Card Styles */
.member-card {
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid rgba(13, 27, 62, 0.06);
    box-shadow: 0 8px 25px rgba(13, 27, 62, 0.02);
    padding: 30px 24px;
    margin: 15px 10px;
    text-align: center;
    transition: all 0.3s ease;
}

.member-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(13, 27, 62, 0.08);
    border-color: rgba(0, 166, 166, 0.25);
}

.member-img-wrapper {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 20px;
    border: 4px solid #f3f4f6;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    background: #fafafa;
    transition: all 0.3s ease;
}

.member-card:hover .member-img-wrapper {
    border-color: #00a6a6;
}

.member-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.member-name {
    color: #0d1b3e;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.member-job {
    color: #00a6a6;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0;
}
