  /* Reset and Base Styles */
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  body {
    font-family: Arial, sans-serif;
    background-color: #fff;
    color: #000;
    line-height: 1.6;
    padding: 20px;
  }

  /* Layout Grid */
  .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  /* Column Styles */
  .left-column h2,
  .right-column h2 {
    color: #003366;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 10px;
  }

  /* General Section Headers */
  h3 {
    color: #cc6600;
    font-style: italic;
    font-weight: normal;
    margin-top: 12px;
    margin-bottom: 6px;
  }

  /* Lists */
  ul {
    list-style-type: disc;
    padding-left: 20px;
  }

  /* Subsection Headers (Class-based, optional) */
  .subsection {
    color: #cc6600;
    font-style: italic;
    font-weight: normal;
    margin-top: 12px;
  }

  /* Education and Work History Sections */
  .education li,
  .work-history li {
    font-weight: bold;
    margin-bottom: 8px;
  }


.left-column {
  background-color: #f0f4ff;
  padding: 20px;
  border-radius: 8px;
}

/* Footer styling */
.footer {
  text-align: center;
  padding: 12px 8px;
  font-size: 14px;
  color: #333;
}

.footer a {
  text-decoration: none;
  color: #003366;
}

.footer a:hover {
  text-decoration: underline;
}

.footer span,
.footer a {
  margin: 0 4px;
}

#deploy-date {
  margin-left: 10px;
  font-style: italic;
  color: #555;
}
