.org-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.org-header-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: linear-gradient(135deg, rgba(45, 27, 78, 0.98), rgba(26, 26, 26, 0.98));
    padding: 3rem;
    border-radius: 15px;
    margin-bottom: 2rem;
    border: 1px solid rgba(155, 109, 255, 0.3);
}

.org-logo {
    margin-bottom: 2rem;
}

.logo-img {
    width: 300px;
    height: auto;
    filter: drop-shadow(0 0 20px rgba(155, 109, 255, 0.5));
    transition: transform 0.3s ease;
}

.logo-img:hover {
    transform: scale(1.05);
}

.org-intro h2 {
    color: #9b6dff;
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.org-description {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.org-description p {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.org-description p:last-child {
    margin-bottom: 0;
}

.org-contact-info {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.contact-item i {
    color: #9b6dff;
}

.contact-item a {
    color: #9b6dff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #fff;
}

.org-section {
    background: linear-gradient(135deg, rgba(45, 27, 78, 0.95), rgba(26, 26, 26, 0.95));
    border-radius: 15px;
    padding: 2rem;
    margin: 2rem 0;
    border: 1px solid rgba(155, 109, 255, 0.3);
}

.org-section h3 {
    color: #9b6dff;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.org-services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.service-card {
    background: rgba(155, 109, 255, 0.1);
    border-radius: 10px;
    padding: 1.5rem;
    border: 1px solid rgba(155, 109, 255, 0.2);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: #9b6dff;
}

.service-card i {
    font-size: 2rem;
    color: #9b6dff;
    margin-bottom: 1rem;
}

.service-card h4 {
    color: #fff;
    margin-bottom: 1rem;
}

.service-card ul {
    list-style: none;
    padding: 0;
}

.service-card ul li {
    color: rgba(255, 255, 255, 0.8);
    margin: 0.8rem 0;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.4;
}

.service-card ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #9b6dff;
}

.it-section {
    background: linear-gradient(135deg, rgba(45, 27, 78, 0.95), rgba(26, 26, 26, 0.95));
    border-radius: 15px;
    padding: 2rem;
    margin: 2rem 0;
    border: 1px solid rgba(155, 109, 255, 0.3);
}

.it-section h3 {
    color: #9b6dff;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.it-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.stat-item {
    background: rgba(155, 109, 255, 0.1);
    border-radius: 10px;
    padding: 1.8rem;
    text-align: center;
    border: 1px solid rgba(155, 109, 255, 0.2);
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    border-color: #9b6dff;
}

.stat-item i {
    font-size: 2rem;
    color: #9b6dff;
    margin-bottom: 1rem;
}

.stat-item span {
    display: block;
    font-size: 2.5rem;
    color: #fff;
    margin: 0.5rem 0;
}

.stat-item p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    line-height: 1.4;
    margin-top: 0.5rem;
}

.org-structure-section {
    background: linear-gradient(135deg, rgba(45, 27, 78, 0.95), rgba(26, 26, 26, 0.95));
    border-radius: 15px;
    padding: 2rem;
    margin: 2rem 0;
    border: 1px solid rgba(155, 109, 255, 0.3);
}

.org-structure-section h3 {
    color: #9b6dff;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.org-chart {
    padding: 1rem;
}

.org-chart-img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    cursor: zoom-in;
    transition: transform 0.3s ease;
}

.org-chart-img:hover {
    transform: scale(1.02);
}

@media (max-width: 768px) {
    .org-services {
        grid-template-columns: 1fr;
    }

    .it-stats {
        grid-template-columns: 1fr;
    }

    .org-contact-info {
        flex-direction: column;
        align-items: center;
    }
}