        .divan-section {
            max-width: 1200px;
            margin: 40px auto;
            padding: 20px;
            background-color: #fff;
            border-radius: 10px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        }
        
        .divan-photo {
            display: block;
            margin: 0 auto 40px;
            width: 330px;
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
            transition: transform 0.3s ease;
        }
        
        .divan-photo:hover {
            transform: scale(1.03);
        }
        
        .divan-section h2 {
            text-align: center;
            margin-bottom: 40px;
            font-size: 2em;
        }
        
        .grid-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 25px;
        }
        
        .officer-card {
            background-color: #fafafa;
            border: 2px solid #ddd;
            border-radius: 10px;
            padding: 20px;
            text-align: center;
            transition: all 0.3s ease;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        }
        
        .officer-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
            border-color: #560116;
        }
        
        .officer-card h3 {
            margin: 0 0 10px 0;
            font-size: 1.3em;
        }
        
        .officer-card .name {
            font-weight: bold;
            font-size: 1.2em;
            margin: 10px 0;
        }
        
        .officer-card .email a {
            color: #560116;
            text-decoration: none;
            word-break: break-all;
        }
        
        .officer-card .email a:hover {
            text-decoration: underline;
        }
        
        @media (max-width: 600px) {
            .grid-container {
                grid-template-columns: 1fr;
            }
            .divan-photo {
                width: 100%;
            }
        }
