* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
}

.vision-container-main {
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 20px;
}

/* Header Section */
.vision-header-section {
    text-align: center;
    margin-bottom: 80px;
    padding: 40px 20px;
    background: linear-gradient(135deg, #0067ce95 0%, #e9ecef 100%);
    border-radius: 20px;
}

.vision-main-title {
    font-size: 3.5rem;
    color: #1a1a1a;
    margin-bottom: 20px;
    font-weight: 700;
    letter-spacing: -1px;
}

.vision-title-underline {
    width: 120px;
    height: 5px;
    background-color: #007bff;
    margin: 0 auto 30px;
    border-radius: 3px;
}

.vision-subtitle-text {
    font-size: 1.4rem;
    color: #555;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

.editorial-board-section-heading {
    font-size: 2rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 40px;
    padding-bottom: 15px;
    border-bottom: 3px solid #3498db;
    display: inline-block;
}

.editorial-board-chief-editor-section,
.editorial-board-members-section,
.editorial-board-international-section {
    margin-bottom: 80px;
}

.editorial-board-members-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.editorial-board-member-card {
    background: white;
    border-radius: 12px;
    padding: 35px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-left: 4px solid #3498db;
    position: relative;
    overflow: hidden;
}

.editorial-board-member-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(52, 152, 219, 0.02);
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.editorial-board-member-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.editorial-board-member-card:hover::before {
    transform: translateY(0);
}

.editorial-board-chief-editor-card {
    border-left: 4px solid #e74c3c;
    background: linear-gradient(135deg, #ffffff 0%, #fefefe 100%);
}

.editorial-board-chief-editor-card::before {
    background: rgba(231, 76, 60, 0.02);
}

.editorial-board-member-name {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}

.editorial-board-chief-editor-card .editorial-board-member-name {
    color: #e74c3c;
}

.editorial-board-member-position {
    font-size: 1.05rem;
    font-weight: 600;
    color: #3498db;
    margin-bottom: 8px;
    position: relative;
    z-index: 1;
}

.editorial-board-chief-editor-card .editorial-board-member-position {
    color: #c0392b;
}

.editorial-board-member-department {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 6px;
    line-height: 1.5;
    position: relative;
    z-index: 1;
}

.editorial-board-member-institution {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 18px;
    line-height: 1.5;
    font-style: italic;
    position: relative;
    z-index: 1;
}

.editorial-board-member-email {
    display: inline-block;
    color: #3498db;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    padding: 10px 20px;
    background-color: #ecf7fd;
    border-radius: 6px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.editorial-board-member-email:hover {
    background-color: #3498db;
    color: white;
    transform: translateX(5px);
}

.editorial-board-chief-editor-card .editorial-board-member-email {
    background-color: #fdecea;
    color: #e74c3c;
}

.editorial-board-chief-editor-card .editorial-board-member-email:hover {
    background-color: #e74c3c;
    color: white;
}

@media (max-width: 768px) {
    .editorial-board-main-heading {
        font-size: 2.5rem;
    }

    .editorial-board-section-heading {
        font-size: 1.6rem;
    }

    .editorial-board-members-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .editorial-board-member-card {
        padding: 25px;
    }

    .editorial-board-main-wrapper {
        padding: 40px 15px;
    }
}

@media (max-width: 480px) {
    .editorial-board-main-heading {
        font-size: 2rem;
    }

    .editorial-board-member-name {
        font-size: 1.2rem;
    }
}
