/* Reset CSS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
}

header {
    background-color: #333;
    color: #fff;
    padding: 50px 0;
}

header h1 {
    font-size: 36px;
    margin-bottom: 20px;
}

header p {
    font-size: 18px;
    margin-bottom: 30px;
}

header a {
    background-color: #ff6600;
    color: #fff;
    padding: 10px 20px;
    font-size: 18px;
    text-decoration: none;
    border-radius: 5px;
}

#hero {
    background-size: cover;
    background-position: center;
    text-align: center;
    color: #fff;
    padding: 100px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#hero h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

#hero p {
    font-size: 18px;
    margin-bottom: 30px;
}

#hero a {
    background-color: #ff6600;
    color: #fff;
    padding: 10px 20px;
    font-size: 18px;
    text-decoration: none;
    border-radius: 5px;
}

#features {
    padding: 100px 0;
    text-align: center;
    background-color: #f4f4f4;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#features h2 {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 30px;
}

.feature {
    margin-bottom: 50px;
    text-align: left;
}

.feature h3 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
}

.feature p {
    font-size: 18px;
}

.usage {
    text-align: left;
    margin-top: 30px;
}

.usage h3 {
    font-size: 30px;
    font-weight: bold;
    text-align: center;
}

.process{
    text-align: left;
    margin-top: 30px;
}

.process h4{
    font-weight: bold;
    font-size: 24px;
}
.process h5{
    font-weight: bold;
    font-size: 20px;
}

img{
    margin-top: 30px;
    margin-bottom: 30px;
    width: 60%;
    align-content: center;
}

#signup h2{
    margin-top: 40px;
}