/* Basic reset */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
    body {
        font-family: Times New Roman;
        background-color: #ffffff;
        color: #483c32;
        line-height: 1.6;
    }

    header {
        background: #ff7f00;
        color: black;
        padding: 1rem 0;
        text-align: center;
        position: static;
        bottom: 50px;
    }

    nav {
        background: #00827f;
        padding: 0.5rem;
        display: flex;
        justify-content: left;
        align-items: left;
        flex-wrap: wrap;
        gap: 0.5rem;
     }

   nav button {
    background-color:#00827f;
    display:flex;
    position: left;
    margin:1rem;
    text-decoration:none;
    }

    footer {
        background: #00827f;
        color: black;
        text-align: center;
        padding: 1rem;
        margin-top: 2rem;
    }
    .card {
  padding: 12px;
  border-radius: 14px;
  background-color: white;
  border: 3px solid #e0e0e0;
  box-shadow: none;
  transition: all 0.3s ease;
  position: right;
  margin: 1rem;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.16);
}
.section-title {
    margin: 1rem 0 1rem;
    color:#000000;
    font-style: bold;
    text-decoration: underline;
}
.info {
    margin: 2rem 0;
    list-style-type: disc;
    font-style: bold;
    padding-left: 1.5rem;
}
