/* Headings */
h1, h2, h3 {
    color: #ffffff; /* white for visibility over dark overlay */
  }
  
  /* Image inside content (not background image) */
  img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  }
  
  /* Unordered list */
  ul {
    list-style-type: square;
    padding-left: 20px;
    color: #ffffff;
  }
  
/* Table styling */
table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    background-color: rgba(255, 255, 255, 0.1); /* Transparent white */
    color: #ffffff; /* White text for visibility */
    border-radius: 8px;
    overflow: hidden;
  }
  
  th, td {
    padding: 12px 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    text-align: left;
  }
  
  th {
    background-color: rgba(0, 102, 204, 0.8); /* Dark blue for header */
    color: #ffffff;
  }
  
  td {
    background-color: rgba(255, 255, 255, 0.05); /* Light transparent rows */
  }
  
  
  /* Links hover effect */
  a {
    color: #ffffff;
    text-decoration: none;
    padding: 5px 10px;
    border-radius: 4px;
  }
  
  a:hover {
    background-color: #0077cc;
    transition: 0.3s;
  }
  
  /* Section cards */
  section {
    background-color: rgba(255, 255, 255, 0.15); /* light transparent for card effect */
    padding: 20px;
    margin: 20px 0;
    border-radius: 10px;
    backdrop-filter: blur(6px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    color: #ffffff;
  }
  