*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    font-family: 'Segoe UI', sans-serif;
    background: linear-gradient(to right, #0f2027, #203a43, #2c5364);
    color: #fff;
    line-height: 1.6;
    padding: 20px;
}

header{
    text-align: center;
    margin-bottom: 40px;
}
header h1 {
    font-size: 3em;
    margin-bottom: 10px;
    color: #00ffc3;
}
header p {
    font-size: 1.2em;
    color: #ccc;
}

main section{
    background-color: rgba(255, green, blue, 0.05);
    padding: 20px;
    margin-bottom: 30px;
    border-left: 5px solid #00ffc3;
    border-radius: 8px;
}

section h2 {
    margin-bottom: 10px;
    color: #00ffc3;
}
ul{
    list-style: disc;
    padding-left: 20px;
}

form{
    display: flex;
    flex-direction: column;
    gap: 10px;
}

input,select, button{
    padding: 10px;
    font-size: 16px;
    border: none;
    border-radius: 4px;
    outline: none;
}

input, select{
    background-color: #00ffc3;
    color: #000;
}
button{
    background-color: #00ffc3;
    color: #000;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s ease;
}
button:hover{
    background-color: #00c2a0;
}

footer{
    text-align: center;
    margin-top: 50px;
    font-size: 14px;
    color: #ccc;
}