* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background: #ceced1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-top: 10px;
}
header{
    width: 100%;
}
header div{
    display: flex;
    flex-direction: row;
    background: #191970;
    color: white;
    justify-content: space-between;
    align-items: center;
}
.container{
    width: 90%;
    max-width: 1200px;
    margin: auto;
}
.help{
    width: 100%;
}
.main-header{
    color: white;
    width: 100%;
    display: flex;
    flex-direction: row;
}
.main-header a{
    color: white;
    width: 90px;
}
header h1{
    text-align: center; 
    margin-top: 10px;
}
.title{
    padding-bottom: 15px;
}
.hero{
    background:linear-gradient(to right,#005f73,#0a9396);
    color:white;
    padding:60px 20px;
    text-align:center;
}
.hero h1{
    font-size:3rem;
    margin-bottom:15px;
}

.hero p{
    font-size:1.1rem;
    max-width:800px;
    margin:auto;
}

.card{
    background:white;
    margin:30px 0;
    padding:30px;
    border-radius:12px;
    box-shadow:0 2px 10px rgba(0,0,0,0.1);
}

.card h2{
    color:#005f73;
    margin-bottom:20px;
    font-size:2rem;
    border-bottom:2px solid #0a9396;
    padding-bottom:10px;
}

.card h3{
    color:#0a9396;
    margin-top:20px;
    margin-bottom:10px;
    font-size:1.3rem;
}

.card p{
    margin-bottom:15px;
}

.card ul{
    margin-left:25px;
    margin-bottom:15px;
}

.card ul li{
    margin-bottom:10px;
}
/* Form group (vertical alignment) */
.form-group {
    display: flex;
    flex-direction: row;
    margin-bottom: 10px;
    margin-top: 1px;
    width: 150px;
    height: 22px;
}
.label{
    margin-left: 0px;
}
.additional{
    margin-left: 14px;
    padding: 10px;
}
/* Labels */
container-1 > label {
    margin-bottom: 5px;
    font-weight: bold;
}
.container-1{
    display: flex;
    flex-direction: row;
}
.first{
    display: flex; 
    flex-direction: row;
}
.container-2{
    display: flex;
    flex-direction: column;
}
.container-3{
    display: flex;
    flex-direction: column; 
    padding-left: 285px;
}
/* Inputs */
input{
    height: 30px;
    text-align: center;
}

container-1  input {
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #ccc;
    font-size: 14px;
    width: 10px;
}
#name{
    width: 250px;
    /* margin-top: 10px; */
    margin-bottom: 10px;
}
/* Button */
a {
    width: 100%;
    padding: 8px;
    background: #007BFF;
    color: #fff;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-size: 16px;
    text-align: center;
}

button:hover {
    background: #0056b3;
}

.Note{
    color: red;
}
footer{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center; 
    margin: 15px;
    background: #191970;
    color: white;
    width: 100%;
}
footer p{
    text-align: center;
}
.result-container{
    display: flex;
    flex-direction: column;
    padding: 15px;
    height: min-content;
}
.result-container ul{
    margin-left: 30px;
}
.info{
    text-align: center;
}
.result-header{
    display: flex; 
    flex-direction: row;
     justify-content: space-between; 
     margin-bottom: 20px;
}
.result-footer{
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
}
/* Responsive */
@media (max-width: 768px) {
    .container-1 {
        display: flex;
        flex-direction: column;
        padding-left: 0;
    }
    .main-header{
    color: white;
    width: 100%;
    display: flex;
    flex-direction: row;
    }
    .first {
    display: flex; 
    flex-direction: column;
    }
    .container-3{
    display: flex;
    flex-direction: column; 
    padding-left: 0;
    }
    .form-group {
    display: flex;
    flex-direction: row;
    width: 150px;
    height: 22px;
    }
    .label{
    margin-left: 0;
    font-size: 20px;
    font-weight: bold;
   }
   .additional{
    margin-left: 0;
    padding: 0;
   }
   input{
    height: 100px;
    text-align: center;
    width: 400px;
   }
       .hero h1{
        font-size:2rem;
    }

    .hero p{
        font-size:1rem;
    }

    .card{
        padding:20px;
    }

    .card h2{
        font-size:1.5rem;
    }

    .card h3{
        font-size:1.1rem;
    }
}