/* Basic Reset */
body, h1, h2, h3, p, ul, li, a {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Times New Roman', Times, serif;
    line-height: 1.6;
    color: #fff;
    background-color: #000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    text-align: center;
    padding: 1em;
}

header {
    background: #333;
    color: #fff;
    padding: 1rem 0;
    text-align: center;
}

header h1 {
    margin-bottom: 0.5rem;
}

header nav ul {
    list-style: none;
}

header nav ul li {
    display: inline;
    margin: 0 10px;
}

header nav ul li a {
    color: #fff;
    text-decoration: none;
}

main {
    padding: 1rem;
}

section {
    padding: 2rem 0;
    border-bottom: 1px solid #ddd;
}

section:last-child {
    border-bottom: none;
}

#hero {
    text-align: center;
    background: #e2e2e2;
    padding: 3rem 1rem;
}

#hero h2 {
    margin-bottom: 1rem;
    font-size: 2.5rem;
}

#hero p {
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.cta-button {
    display: inline-block;
    background: #5cb85c;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.1rem;
}

.cta-button:hover {
    background: #4cae4c;
}

#features h2, #about h2, #contact h2 {
    text-align: center;
    margin-bottom: 1.5rem;
}

.feature {
    margin-bottom: 1rem;
    padding: 1rem;
    background: #fff;
    border-radius: 5px;
}

footer {
    text-align: center;
    padding: 1rem 0;
    background: #333;
    color: #fff;
    margin-top: 1rem;
}

a {
    color: #fff; /* Make links white */
    text-decoration: underline; /* Links always underlined */
}

a:hover {
    color: grey; /* Links turn grey on hover */
    text-decoration: underline; /* Ensure underline remains on hover */
}
