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

/* Typography and colors */
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #fff;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
}

/* Header */
header {
    text-align: center;
    border-bottom: 1px solid #eee;
    padding-bottom: 1.5rem;
}

.logo {
    width: 120px;
    margin-bottom: 1rem;
}

.tagline {
    font-size: 1.2rem;
    color: #555;
}

.center-text {
  text-align: center;
}

.center-block {
  width: 50%; /* Or any specific width */
  margin: 0 auto;
}


.image-group {
  display: flex;
  justify-content: center; /* Horizontal centering */
  align-items: center;     /* Vertical centering */
}

img {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 50%;
}

/* Main Content */
main {
    margin-top: 2rem;
}

h2 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

a {
    color: #0066cc;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Footer */
footer {
    text-align: center;
    font-size: 0.9rem;
    color: #999;
    margin-top: 3rem;
    padding-top: 1.5rem;
    border-top: 1px solid #eee;
}
