body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    background-color: #f4f8fc;
    color: #333;
}
header {
    background: #007acc;
    color: white;
    padding: 20px 0;
    text-align: center;
}
header h1 {
    margin: 0;
    font-size: 2.5em;
}
header p {
    margin: 10px 0;
    font-size: 1.2em;
}
.hero {
    text-align: center;
    padding: 50px 20px;
    background: linear-gradient(to bottom, #007acc, #005b99);
    color: white;
}
.hero img {
    max-width: 100%;
    height: auto;
    margin: 20px auto;
    display: block;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}
.hero h2 {
    font-size: 2em;
    margin: 20px 0;
}
.hero button {
    background: white;
    color: #007acc;
    padding: 10px 20px;
    font-size: 1em;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}
.hero button:hover {
    background: #005b99;
    color: white;
}
.container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 40px 20px;
}
.section {
    flex: 1 1 300px;
    margin: 20px;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.section h3 {
    font-size: 1.5em;
    margin: 0 0 10px;
}
.section p {
    margin: 0;
}
footer {
    text-align: center;
    padding: 20px;
    background: #007acc;
    color: white;
}
footer a {
    color: white;
    text-decoration: none;
}
footer a:hover {
    text-decoration: underline;
}