body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: #f8f9fa;
    color: #333;
}

.container {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 20px;
}

header {
    background: #fff;
    border-bottom: 1px solid #e7e7e7;
    padding: 1rem 0;
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header h1 {
    margin: 0;
    float: left;
}

header nav {
    float: right;
}

header nav ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

header nav ul li {
    display: inline;
    margin-left: 20px;
    margin-top: 5px;
    display: inline-block;
}

header nav a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
}

.content {
    padding: 80px 40px; /* Increased padding for more space */
    background: #fff;
    min-height: calc(100vh - 220px); /* Adjust based on header/footer height */
    text-align: center; /* Center the hero content */
}

.content h1 {
    font-size: 4rem; /* Big catchy headline */
    margin-bottom: 1rem;
    color: #333;
}

.content p {
    font-size: 1.25rem; /* Small description */
    color: #6c757d; /* Muted color for the description */
    max-width: 600px; /* Limit the width of the paragraph */
    margin: 0 auto; /* Center the paragraph */
}


footer {
    background: #333;
    color: #fff;
    text-align: center;
    padding: 1rem 0;
    position: relative;
    bottom: 0;
    width: 100%;
}