body {
    background-color: #ffffff;
    margin: 0;
    margin-inline: 8px;
}

nav {
    background-color: #d9d9d9;
    color: #ffffff;
    width: 100%;
    height: 40px;
    border-radius: 10px;
    background: linear-gradient(135deg, #dd6134, #e78310);

}

nav img {
    float: left;
    height: 30px;
    padding: 5px;
}

@media (max-width: 500px) {
    nav img {
        height: 25px;
    }
}

@media (max-width: 360px) {
    nav img {
        height: 20px;
    }
}

nav b {
    float: left;
    color: #000000;
    font-family: 'Times New Roman', Times, serif;
    font-size: 20px;
    padding: 10px;
}

nav a {
    font-weight: bold;
    float: right;
    color: #000000;
    text-decoration: none;
    padding: 10px;
    font-family: 'Times New Roman', Times, serif;
}

@media (max-width: 500px) {

    nav b,
    nav a {
        font-size: 15px;
        display: block;
    }
}

@media (max-width: 360px) {

    nav b,
    nav a {
        font-size: 13px;
        display: block;
        padding-inline: 5px;
    }
}

header {
    background-image: url(images/R.png);
    border-radius: 10px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    text-align: center;
    height: 300px;
    font-family: 'Times New Roman', Times, serif;
    color: #ffffff;
}

header h1 {
    padding-top: 100px;
    font-size: 45px;
    text-shadow: 2px 2px 4px #000000;
}

@media (max-width: 1000px) {
    header h1 {
        font-size: 40px;
    }
}

@media (max-width: 500px) {
    header h1 {
        font-size: 35px;
    }
}

@media (max-width: 360px) {
    header h1 {
        font-size: 30px;
    }
}

header h3 {
    padding-top: 3px;
    text-shadow: 1px 1px 2px #000000;
}
@media (max-width: 1000px) {
    header h3 {
        font-size: 17px;
    }
}

@media (max-width: 500px) {
    header h3 {
        font-size: 15px;
    }
}

@media (max-width: 360px) {
    header h3 {
        font-size: 10px;
    }
}

header h5 {
    padding-right: 20px;
    padding-bottom: 10px;
    text-align: right;
    text-shadow: 1px 1px 2px #000000;
}
@media (max-width: 1000px) {
    header h5 {
        font-size: 12px;
    }
}

@media (max-width: 500px) {
    header h5 {
        font-size: 10px;
    }
}

@media (max-width: 360px) {
    header h5 {
        font-size: 8px;
    }
}
.story {
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    font-family: 'Times New Roman', Times, serif;
    margin-top: 10px;
    margin-bottom: 10px;
    padding: 20px;
}

.news {
    background-color: #d9d9d9;
    border-radius: 10px;
    font-family: 'Times New Roman', Times, serif;
    margin: 0px;
    padding: 20px;
}
.news img:hover{
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

.news h2 {
    background-color: #bdbdbd;
    border-radius: 10px;
    text-align: center;
    padding: 10px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
    margin-bottom: 20px;
}

.card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    text-decoration: none;
    color: inherit;
    display: block;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.card-media {
    width: 100%;
    height: 200px;
    position: relative;
    overflow: hidden;
}

.card-image {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.card-media::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.6) 100%);
    z-index: 1;
}

.card-content {
    padding: 20px;
    position: relative;
    z-index: 2;
}

.card-title {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    margin-bottom: 8px;
    line-height: 1.3;
}

.card-text {
    color: #666;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 15px;
}


footer {
    text-align: center;
    padding: 10px;
    background-color: #333;
    color: white;
}

.socials {
    float: right;
    padding: 0px;
}

.baba h1 {
    margin-inline: 50px;
    background: linear-gradient(135deg, #dd6134, #e78310);
    border-radius: 10px;
    font-family: 'Times New Roman', Times, serif;
    text-align: center;
    font-size: 50px;
}
@media (max-width: 1000px) {
    .baba h1 {
        font-size: 40px;
    }
}
@media (max-width: 500px) {
    .baba h1 {
        font-size: 30px;
    }
}
@media (max-width: 360px) {
    .baba h1 {
        font-size: 20px;
    }
}

.baba img {
    width: 100px;
    height: 240px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #ff6b35;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
}
@media (max-width: 1000px) {
    .baba img {
        width: 80px;
        height: 200px;
    }
}
@media (max-width: 800px) {
    .baba img {
        width: 70px;
        height: 160px;
    }
}
@media (max-width: 700px) {
    .baba img {
        width: 60px;
        height: 130px;
    }
}
@media (max-width: 600px) {
    .baba img {
        width: 50px;
        height: 120px;
    }
}
@media (max-width: 500px) {
    .baba img {
        width: 40px;
        height: 100px;
    }
}
@media (max-width: 360px) {
    .baba img {
        width: 50px;
        height: 80px;
    }
}

.pss h1 {
    margin-inline: 50px;
    background: linear-gradient(135deg, #dd6134, #e78310);
    border-radius: 10px;
    font-family: 'Times New Roman', Times, serif;
    text-align: center;
    font-size: 50px;
}
@media (max-width: 1000px) {
    .pss h1 {
        font-size: 40px;
    }
}
@media (max-width: 500px) {
    .pss h1 {
        font-size: 30px;
    }
}
@media (max-width: 360px) {
    .pss h1 {
        font-size: 20px;
    }
}

.pss {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    border-radius: 10px;
    font-family: 'Times New Roman', Times, serif;
    margin-top: 10px;
    margin-bottom: 10px;
    padding: 20px;

}

.about {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    border-radius: 10px;
    font-family: 'Times New Roman', Times, serif;
    margin-top: 10px;
    margin-bottom: 10px;
    padding: 20px;

}

.structure {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    border-radius: 10px;
    font-family: 'Times New Roman', Times, serif;
    margin-top: 10px;
    margin-bottom: 10px;
    padding: 20px;

}

.structure h1 {
    margin-inline: 50px;
    background: linear-gradient(135deg, #dd6134, #e78310);
    border-radius: 10px;
    font-family: 'Times New Roman', Times, serif;
    text-align: center;
}
@media (max-width: 1000px) {
    .structure h1 {
        font-size: 40px;
    }
}
@media (max-width: 500px) {
    .structure h1 {
        font-size: 30px;
    }
}
@media (max-width: 360px) {
    .structure h1 {
        font-size: 20px;
    }
}

.structure h3 {
    border-radius: 10px;
    font-family: 'Times New Roman', Times, serif;
}

.structure h4 {
    border-radius: 10px;
    font-family: 'Times New Roman', Times, serif;
}

.header-container {
    text-align: center;
    margin-bottom: 20px;
    position: relative;
}

.header-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 10px;
    border: 4px solid #ff6b35;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.chairman-title {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    margin: 5px 0;
}

.table-container {
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    max-width: 800px;
    margin: 0 auto;
}

table {
    width: 100%;
    border-collapse: collapse;
}

th,
td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

th {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: white;
    font-weight: bold;
}

tr:nth-child(even) {
    background: #f9f9f9;
}

tr:hover {
    background: #e3f2fd;
}

.zone-section {
    background: #e8f4fd;
    font-weight: bold;
    color: #1976d2;
}

.no-border-bottom {
    border-bottom: none;
}

.zones {
    background: #f0f8ff;
    font-style: italic;
    color: #555;
    line-height: 1.4;
}

.leaders-header {
    text-align: center;
    margin-bottom: 30px;
    position: relative;
}

.leaders-title {
    font-size: 20px;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
}

.leaders-photos {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.leader-photo-box {
    text-align: center;
}

.leader-image {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #ff6b35;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
}

.leader-name {
    font-size: 14px;
    font-weight: bold;
    color: #333;
    margin-top: 8px;
}

.info-subtitle {
    font-size: 14px;
    color: #666;
    font-style: italic;
}

.data-table-wrapper {
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    max-width: 800px;
    margin: 0 auto;
}

table {
    width: 100%;
    border-collapse: collapse;
}

th,
td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

th {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: white;
    font-weight: bold;
}

tr:nth-child(even) {
    background: #f9f9f9;
}

tr:hover {
    background: #e3f2fd;
}

@media (max-width: 768px) {
    .leaders-photos {
        gap: 20px;
    }

    .leader-image {
        width: 80px;
        height: 80px;
    }
}
.headlines {
    background-color: #bdbdbd;
    border-radius: 10px;
    font-family: 'Times New Roman', Times, serif;
    padding: 10px;
}
.headlines:hover {
    transform: translateY(-5px);
}