.container {
            max-width: 1200px;
            margin: 40px auto;
            padding: 20px;
        }
        
        section {
            background-color: #fff;
            border-radius: 10px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            padding: 40px;
            margin-bottom: 60px;
        }
        
        h2 {
            text-align: center;
            color: #560116; /* Shrine red */
            margin-bottom: 40px;
            font-size: 2.2em;
        }
        
        .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);
        }
        
        .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 {
            color: #560116;
            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;
        }
        
        /* Events Section Styles */
        .note {
            text-align: center;
            font-style: italic;
            color: #900;
            margin-bottom: 30px;
            font-size: 1.1em;
        }
        
        .events-accordion details {
            margin-bottom: 15px;
            border: 1px solid #ddd;
            border-radius: 8px;
            overflow: hidden;
        }
        
        .events-accordion summary {
            background-color: #560116;
            color: white;
            padding: 15px 20px;
            font-weight: bold;
            font-size: 1.4em;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }
        
        .events-accordion summary:hover {
            background-color: #560116;
        }
        
        .events-accordion summary::-webkit-details-marker {
            display: none;
        }
        
        .events-accordion summary::after {
            content: ' ▼';
            float: right;
            transition: transform 0.3s ease;
        }
        
        .events-accordion details[open] summary::after {
            transform: rotate(180deg);
        }
        
        .month-events {
            padding: 20px;
            background-color: #fafafa;
        }
        
        .event-card {
            background: white;
            border: 1px solid #eee;
            border-radius: 8px;
            padding: 18px;
            margin-bottom: 20px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.05);
            transition: transform 0.2s ease;
        }
        
        .event-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 6px 15px rgba(0,0,0,0.1);
        }
        
        .event-card h4 {
            margin: 0 0 12px 0;
            color: #560116;
            font-size: 1.3em;
        }
        
        .event-card p {
            margin: 8px 0;
            line-height: 1.5;
        }
        
        .event-card strong {
            color: #333;
        }
        
        @media (max-width: 600px) {
            .grid-container {
                grid-template-columns: 1fr;
            }
            h2 {
                font-size: 1.8em;
            }
            .events-accordion summary {
                font-size: 1.2em;
                padding: 12px 15px;
            }
        }
