body {
    font-family: Arial, sans-serif;
    padding: 20px;
    line-height: 1.6;
    color: #333;
}

.technopark-content .images-container {
    text-align: center;
    margin-bottom: 40px;
}

.technopark-content .images-container img {
    width: 400px;
    height: 300px;
    margin: 0 20px;
    padding: 15px;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.technopark-content .main-description {
    background: linear-gradient(135deg, #fde9e0 0%, #f9c9b6 100%);
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 40px;
    text-align: center;
    font-size: 1.1em;
}

.technopark-content h1, 
.technopark-content h2 {
    color:  #4f382b;
    text-align: center;
}

.technopark-content h1 {
    font-size: 2.2em;
    margin-bottom: 20px;
}

.technopark-content h2 {
    font-size: 1.8em;
    margin-top: 40px;
    margin-bottom: 20px;
}

.technopark-content ul {
    background: white;
    padding: 25px 25px 25px 40px; 
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    margin-bottom: 30px;
    list-style: none; 
}

.technopark-content li {
    margin-bottom: 12px;
    padding-left: 15px;
    position: relative;
}

.technopark-content li:before {
    content: "•";
    color: #f1951d;
    font-weight: bold;
    position: absolute;
    left: -20px; 
    font-size: 1.2em;
}

.technopark-content .staff-list {
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    margin-bottom: 40px;
}

.technopark-content .staff-item {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px dashed #eee;
}

.technopark-content .staff-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.technopark-content .staff-photo-box {
    width: 80px;
    height: 100px;
    background: #eef2f5; 
    border: 2px solid #f1951d;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0; 
    display: flex;
    align-items: center;
    justify-content: center;
}

.technopark-content .staff-photo-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.technopark-content .staff-info {
    font-size: 0.95em;
}

.technopark-content .staff-info strong {
    color: #2c3e50;
}

.technopark-content .staff-info small {
    color: #666;
    display: block;
    margin-top: 2px;
}

.technopark-content .auditorium {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 40px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.technopark-content .auditorium-images {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.technopark-content .auditorium-images img {
    width: 250px;
    height: 180px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    cursor: pointer;
    transition: transform 0.3s ease;
}

.technopark-content .auditorium-images img:hover {
    transform: scale(1.05); 
}

.technopark-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: transparent;
    pointer-events: none;
}

.technopark-modal.active {
    display: block;
}

.technopark-modal-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(0, 0, 0, 0.9);
    border-radius: 10px;
    padding: 20px;
    pointer-events: auto;
    max-width: 90%;
    max-height: 90%;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
}

.technopark-modal-content {
    display: block;
    max-width: 100%;
    max-height: 80vh;
}

.technopark-modal-content img {
    width: 100%;
    height: auto;
    max-height: 80vh;
    object-fit: contain;
    display: block;
    border-radius: 5px;
}

.technopark-modal-close {
    position: absolute;
    top: -10px;
    right: -10px;
    color: #fff;
    background-color: #333;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    z-index: 1001;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #fff;
}

.technopark-modal-close:hover {
    background-color: #ff0000;
}