html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-color: #f0f8ff; /* AliceBlue */
    color: #333333; /* Dark Gray */
    display: flex;
    flex-direction: column;
}

header {
    background-color: #007acc; /* Azure */
    color: white;
    padding: 20px;
    text-align: center;
    position: relative;
}

.header-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

header img {
    max-width: 100px;
    display: block;
    margin: 0 auto 10px;
}

.top-left-text {
    position: absolute;
    top: 30px;
    left: 30px;
    font-size: 4em;
    font-weight: bold;
}

.hero {
    background: url('hero-background.webp') no-repeat center center/cover;
    color: white;
    padding: 100px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
}

.hero h1 {
    font-size: 2.5em;
    margin: 0;
}

.hero p {
    font-size: 1.2em;
}

.section {
    padding: 40px 20px;
    text-align: center;
}

.section h2 {
    color: #005f99; /* Dark Azure */
    margin-bottom: 20px;
}

.section p {
    color: #696969; /* DimGray */
    margin-bottom: 20px;
}

.card {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin: 20px auto;
    max-width: 600px;
    padding: 20px;
    text-align: left;
}

footer {
    background-color: #333333; /* Dark Gray */
    color: white;
    padding: 20px;
    text-align: center;
    flex-shrink: 0;
}

.hero2 {
    background-color: #005f99;
    border-radius: 10px;
    padding: 10px;
    width: 50%;
    margin: 10px 0;
    text-align: center;
}