.ipr-container {
    margin: 0 auto;
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 30px;
  }
  
  /* Committee Content */
  .committee-content {
    border: 1px solid #283593;
    padding: 20px;
    border-radius: 8px;
    background: #f9f9f9;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  }
  
  .committee-content h2 {
    color: #283593;
    margin-bottom: 15px;
    font-size: 1.5rem;
    font-weight: bold;
  }
  
  .committee-content p {
    margin-bottom: 15px;
    font-size: 20px;
  }
  
  /* Members Table */
  .members-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 30px;
  }
  
  .members-table th,
  .members-table td {
    border: 1px solid #283593;
    padding: 12px;
    text-align: left;
  }
  
  .members-table th {
    background-color: #283593;
    color: white;
    font-size: 1.1rem;
  }
  
  .members-table td {
    font-size: 1rem;
    color: #555;
  }
  
  .members-table tr:nth-child(even) {
    background-color: #f2f2f2;
  }
  
  .members-table tr:hover {
    background-color: #e1e7f0;
    transform: scale(1.02);
    transition: background-color 0.3s ease, transform 0.2s ease;
  }
  
  /* Layout for Contact Box and Content */
  .main-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  
  /* Contact Box */
  .contact-box {
    border: 1px solid #283593;
    padding: 20px;
    border-radius: 8px;
    background: #f9f9f9;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    width: 280px;
    align-self: flex-start;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  /* Contact Box with Image */
  .contact-info {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-direction: column;
  }
  
  .contact-logo {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #283593;
  }
  
  .contact-box h3 {
    color: #283593;
    margin-bottom: 10px;
    font-size: 1.5rem;
    font-weight: bold;
  }
  
  .contact-box p {
    font-size: 17px;
    color: #555;
    margin-bottom: 8px;
  }
  
  /* Buttons */
  .buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-bottom: 30px;
  }
  
  .buttons button {
    background-color: #283593;
    color: white;
    border: none;
    padding: 12px 20px;
    font-size: 17px;
    font-weight: bold;
    cursor: pointer;
    border-radius: 5px;
    transition: background 0.3s ease, transform 0.2s ease;
  }
  
  .buttons button:hover {
    background-color: #1a237e;
    transform: translateY(-3px);
  }
  
  .buttons button:active {
    transform: translateY(1px);
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .ipr-container {
      padding: 3px;
    }
    .committee-content {
      padding: 10px;
    }
  }
  
  /* Animation */
  @keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
  }
  