body {
      margin: 0;
      font-family: Arial, Helvetica, sans-serif;
      background: #e8f6fd;
      color: #0f3550;
      line-height: 1.0;
    }
    header {
      background: linear-gradient(135deg, #39a9e3, #39a9e3);
      padding: 60px 20px;
      text-align: center;
      color: white;
    }
    header h1 {
      margin: 0;
      font-size: 3rem;
    }
    header p {
      font-size: 1.2rem;
      opacity: 0.9;
    }
    header a:hover { 
      text-shadow: 5px 5px 5px rgba(200, 200, 200, 1);   
    }
    section {
      max-width: 900px;
      margin: 60px auto;
      padding: 0 20px;
      text-align: center;
    }
    .card {
      background: white;
      border-radius: 12px;
      padding: 30px;
      margin: 20px 0;
      box-shadow: 0 6px 15px rgba(0,0,0,0.08);
    }
    footer {
      text-align: center;
      padding: 30px 0;
      background: #d8effa;
      margin-top: 60px;
      color: #1a2a44;
    }
    

a, a:visited, a img	{ text-decoration:none; color:#0070b8; 	}
a:hover { color:#0070b8;   text-shadow: 2px 2px 3px rgba(200, 200, 200, 1);   }

.blue { color:#0070b8;   text-shadow: 2px 2px 3px rgba(200, 200, 200, 1);   }
.indent  { margin-left: 3em; }

.verticalcenter {
    display: table-cell;
    height: 250px;
    vertical-align: middle;
}

.table-responsive {
    width: 100%;
    overflow-x: auto; /* allows scroll on small screens */
}

table {
    width: 100%;
    padding-left:1em;
    border-collapse: collapse;
    table-layout: fixed; /* required to respect % widths */
}

td, th {
    width: 50%;        /* each cell takes half the row */
    padding: 10px;
    text-align: left;
    border-bottom: 0px;
}

.container {
  display: flex;
  text-align: left;
  align-items: center;
  gap: 1em;
}

.container img {
  width: 100px;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.5); 	/* Adds a soft shadow */
  border-radius: 0px; 								/* Optional: Rounds the corners */
}

