body {
    font-family: Arial, sans-serif;
    margin: 0;
    background: #f7f7f7;
}

header {
    display: flex;
    justify-content: space-between;
    padding: 20px;
    background: #222;
    color: white;
}

nav a {
    color: white;
    margin-left: 15px;
    text-decoration: none;
}

.hero {
    padding: 60px;
    text-align: center;
    background: #4a90e2;
    color: white;
}

.btn {
    background: #ff6a00;
    padding: 12px 20px;
    color: white;
    text-decoration: none;
    border-radius: 5px;
}

.secondary {
    background: #333;
}

.features {
    display: flex;
    justify-content: space-around;
    padding: 40px;
}

form {
    max-width: 400px;
    margin: 40px auto;
    background: white;
    padding: 30px;
    border-radius: 5px;
}

form input {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
}

.dashboard {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.card {
    padding: 30px;
    background: white;
    border-radius: 10px;
    text-decoration: none;
    color: black;
}