* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 20px;
    line-height: 1.7;
    color: #2a2a2a;
    background-color: #f6f7f9;
}

.wrapper {
    max-width: 1000px;
    margin: 40px auto;
    background: white;
    padding: 50px 60px;
    border-radius: 6px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.pagenav a {
    color: white;
    padding: 5px;
    text-decoration: none;
    margin: 0 5px;
    font-weight: 600;
    letter-spacing: .03em;
}
.pagenav {
    background: #2f3e46;
    text-align: center;
    padding: 5px;
    font-family: Arial, Helvetica, sans-serif;
    display: flex;
    justify-content: space-around;
    align-items: center;
    width: 100%;
}
.pagenav a:hover {
    color: #89c9f9;
}
.section-nav {
    text-align: center;
    margin-bottom: 30px;
    font-family: Georgia, "Times New Roman", serif;
}

.section-nav a {
    margin: 0 10px;
    text-decoration: none;
    color: #436e98;
    font-size: 1.25rem;
}

.section-nav a:hover {
    color: #38327d;
    text-shadow: 3px 5px 5px #57708397;
}

h1 {
    font-size: 2.3rem;
    margin-top: 20px; 
    margin-bottom: 20px;
    color: #1c2d3a;
    text-align: center;
}
.subtitle {
    display: block;
    margin-top: 5px;
    font-size: 1.1rem;
    font-weight: normal;
    color: #686696;
}

h2 {
    margin-top: 55px;
    margin-bottom: 18px;
    font-size: 1.6rem;
    color: #1c2d3a;
    border-bottom: 1px solid #e4e7ea;
    padding-bottom: 6px;
}

h3 {
    margin-top: 40px;
    margin-bottom: 12px;
    font-size: 1.4rem;
    color: #334e68;
}

p {
    margin-bottom: 18px;
}

a {
    color: #1b6ca8;
    text-decoration: none;

}

a:hover {
    color: #144d78;
}

p a[href="#"] {
    font-size: 0.95rem;
    font-family: Georgia, "Times New Roman", serif;
    text-decoration: none;

}

img {
    max-width: 100%;
    height: auto;
    margin: 12px 10px 12px 0;
    border-radius: 4px;
    border: 1px solid #dddddd;
}

.image-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
  }
  
.item {
    background-color: #eff2fa;
    padding: 8px;
    text-align: center;
    border-radius: 4px;

  }
  
.pfp img {
    width: 120px; 
    height: auto;
}
.pfp figcaption {
    font-size: 0.6rem;
    margin-bottom: 8px;
    font-family: Georgia, "Times New Roman", serif;
    color: #17396d;

}
.profile img {
    width: 300px; 
    height: auto;
}
.profile{
    background-color: #eff2fa;
    padding: 8px;
    text-align: center;
    border-radius: 4px;
}
.profile figcaption {
    font-size: 0.85rem;
    margin-top: 6px;
    font-family: Georgia, "Times New Roman", serif;
    color: #17396d;
}

.item figcaption {
    font-size: 0.85rem;
    margin-top: 6px;
    font-family: Georgia, "Times New Roman", serif;
    color: #17396d;
}

table {
    width: 100%;
    max-width: 1000px;
    margin: 40px auto;
    border-collapse: collapse;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 20px;
    background: white;
    color: #453283;

}

th {
    background-color: #2f3e46;
    color: white;
    text-align: left;
    padding: 12px 14px;
    letter-spacing: .03em;
}

td {
    padding: 12px 14px;
    border-bottom: 1px solid #e6e6e6;
}

tr:nth-child(even) td {
    background-color: #f7f9fb;
}

tr:hover td {
    background-color: #eef3f7;
}

table {
    border: 1px solid #d8dde3;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}
.table-key ul {
    display: flex;
    justify-content: center;
    gap: 25px;
    list-style: none;
    padding: 0;
}

.table-key li {
    display: flex;
    align-items: center;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 0.9rem;
    color: #453283;

}

.table-key i {
    margin-right: 6px;
}
.site-header {
    display: flex;
    flex-direction: column;
    align-items: center; 
    color: white;
    position: relative;
    padding: 20px 0px;
  }
  
  .logo {
    display: flex;
    align-items: left;
    position: absolute;
    left: 30px;
    top: 20px;
  }
  
  .logo img{
    height: 80px;
    width: auto;
  }
  .backtotop {
    text-align: right;
}
  