.header-wrap {
    display: flex;
    justify-content: center;
    margin: 30px 0;
}

.main-title {
    background: linear-gradient(135deg, #0d8bff, #0066ff);
    color: #fff;
    font-size: 30px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;

    padding: 14px 40px;
    border-radius: 50px;

    box-shadow: 0 10px 25px rgba(0, 102, 255, 0.25);

    display: inline-block;
    position: relative;
}

/* optional glow effect */
.main-title::after {
    content: "";
    position: absolute;
    inset: -3px;
    border-radius: 50px;
    background: rgba(0, 102, 255, 0.15);
    z-index: -1;
    filter: blur(10px);
}



/* HEADER */
.page-header {
    text-align: center;
    margin-bottom: 40px;
}

.page-header h1 {
    font-size: 32px;
    color: #17385a;
    font-weight: 800;
}

.page-header p {
    color: #52667a;
}

/* STAFF */
.staff-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
}

.staff-card {
    background: #fff;
    border-radius: 18px;
    padding: 20px;
    border: 1px solid #e6edf5;
    box-shadow: 0 8px 24px rgba(18, 61, 107, 0.06);
    transition: all 0.3s ease;
}

.staff-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 30px rgba(18, 61, 107, 0.1);
}

.staff-card h3 {
 
    color: #17385a;
    font-size: 20px;
    margin-bottom: 10px;
    font-weight: bold;
}

.staff-card p {
    color: #52667a;
    font-size: 18px;
    line-height: 1.6;
}

/* ABOUT */
.about-section {
    margin-top: 50px;
    background: #fff;
    padding: 24px;
    border-radius: 18px;
    border: 1px solid #e6edf5;
    box-shadow: 0 8px 24px rgba(18, 61, 107, 0.05);
}

.about-section h2 {
    color: #17385a;
    margin-bottom: 10px;
}

.about-section p {
    color: #52667a;
    line-height: 1.7;
}

/* ACCORDION */
.accordion {
    margin-top: 40px;
}

.acc-item {
    margin-bottom: 12px;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid #e6edf5;
}

.acc-title {
    background: #128ae6;
    color: #fff;
    padding: 15px;
    cursor: pointer;
    font-weight: 600;
    transition: 0.3s;
}

.acc-title:hover {
    background: #1d6fb8;
}

.acc-content {
    max-height: 0;
    overflow: hidden;
    padding: 0 15px;
    transition: max-height 0.3s ease;
}

.acc-content ul {
    padding: 15px 0;
}

.acc-content li {
    margin-bottom: 8px;
    color: #17385a;
}

/* ACCORDION FIX */
.acc-content {
    max-height: 0;
    overflow: hidden;
    padding: 0 15px;
    transition: max-height 0.4s ease, padding 0.3s ease;
}

.acc-item.active .acc-content {
    max-height: 100%;
    padding: 10px 15px;
}

.staff-img {
      width: 250px;
    height: 250px;
    margin: 0 auto 15px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid #128ae6;
}

/* IMAGE RESPONSIVE */
.staff-img img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* MUHIM: rasm buzilmaydi */
}

/* keep your old styles */