/* Policies page specific styles */

header {
    padding: 20px 0;
    text-align: center;
    color: white;
}

header .logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

header .logo img {
    width: 300px;
    height: auto;
}

footer {
    text-align: center;
    padding: 20px;
    margin-top: 20px;
    color: #000;
}

footer a {
    color: #696969;
    font-size: 14px;
    text-decoration: none;
    margin: 0px;
}

footer a:hover {
    text-decoration: underline;
}

footer p {
    margin-bottom: 10px;
}

.container {
  max-width:65.5%;
  margin: 0 auto;
  padding: 30px;
  border-radius: 12px;
  font-family: Arial, sans-serif;
  line-height: 1.7;
  color: #333;
}

.container h2 {
  font-size: 28px;
  margin-bottom: 20px;
  text-align: left;
}

.container h3 {
    margin-bottom: 20px;
    text-align: left;
    color: #505050;
}

.container p {
  margin-bottom: 20px;
  font-size: 16px;
  color: #505050;
}

.list {
  padding-left: 20px;
}

.list li {
  margin-bottom: 15px;
}

.list ul {
    margin-left: 50px;
    list-style-type: disc;
}

.list h3{
    margin-bottom: 20px;
    color: #505050;
}

.list ul li {
    margin-bottom: 10px;
    font-size: 16px;
    color: #505050;
}

.olist {
    margin-left: 50px;
    list-style-type: disc;
}

.olist li {
    margin-bottom: 20px;
    font-size: 16px;
    color: #505050;
}

.selected {
    text-decoration: none;
}

.team-container {
    max-width: 100%;
    margin: 0 auto;
    background: #f4f4f4;
    border-radius: 12px;
    font-family: Arial, sans-serif;
    line-height: 1.7;
    color: #333;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
    justify-items: center;
}

.team-card {
    background: #f4f4f4;
    border-radius: 10px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.card-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.card-header img {
    width: 180px;
    height: 180px;
    border-radius: 8px;
    object-fit: cover;
    margin-right: 15px;
    transition: transform 0.3s ease;
}

.card-header img:hover {
    transform: scale(1.05);
}

.card-header .info p {
    margin: 3px 0;
    font-size: 14px;
}

.card-header .info .name {
    font-weight: bold;
    font-size: 18px;
}

.card-body {
    font-size: 14px;
    line-height: 1.6;
    color: #444;
    border-top: 1px solid #ddd;
    padding-top: 10px;
}

#titles {
    color: #000;
}

.bottom {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    background-color: #f4f4f4;
    margin-left: 30px;
    margin-right: 30px;
}

.footer-left-1, .footer-left, .footer-center, .footer-right, .footer-right-1 {
    text-align: left;
    flex: 1;
}

.social a:hover {
    text-decoration: none;
}

nav ul li a {
    text-decoration: none;
    color: #000;
}