﻿body {
    font-family: Arial, sans-serif;
    margin: 0;
    background: #f7f7f7;
}

.header {
    background: #333;
    color: white;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: bold;
}

.nav a {
    color: white;
    margin-left: 15px;
    text-decoration: none;
}

    .nav a:hover {
        text-decoration: underline;
    }

.content {
    padding: 20px;
    background: white;
    min-height: 500px;
}

.footer {
    background: #222;
    color: #ccc;
    text-align: center;
    padding: 15px;
}

.hero {
    background: #ffe082;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
}

    .hero .button {
        display: inline-block;
        margin-top: 15px;
        background: #ff9800;
        color: white;
        padding: 10px 20px;
        text-decoration: none;
        border-radius: 6px;
    }

.feature-section {
    margin-top: 40px;
}
