body {
    margin: 0;
    font-family: sans-serif;
    background-color: #fdfdfd;
}

.site-header {
    background-color: #ffffff;
    padding: 15px 0;
    border-bottom: 10px solid #eaeaea;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.logo-link img {
    height: 50px;
    display: inline-block;
}

.welcome-banner {
    width: 100%;
    height: 16.7vh;
    background-image: url('../img/banner.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    margin-top: 30px; 
}

.card-section {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
    display: flex;
    justify-content: center;
}

.card {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    padding: 30px;
    max-width: 700px; 
    width: 90%;
    display: flex;
    align-items: center;
    gap: 30px;
}

.card img {
    max-width: 150px;
    margin-bottom: 0;
    flex-shrink: 0;
}

.card h3 {
    margin: 0 0 10px 0;
    color: #333;
}

.card p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

footer {
  text-align: center;
  padding: 20px 0;
  margin-top: 40px;
  color: #555;
  border-top: 1px solid #eee;
}

footer a {
  color: #007bff;
  text-decoration: none;
}

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