body {
    font-family: 'Poppins', sans-serif;
    background-color: #1e517e;
    margin: 0;
    padding: 20px;
    color: #4a4a4a;
}

.container {
    max-width: 900px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0px 8px 24px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.container:hover {
    transform: scale(1.02);
}

.logo {
    display: block;
    margin: 0 auto 30px auto;
    max-width: 400px;
    height: auto;
}

h1 {
    text-align: center;
    color: #333;
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 25px;
}

.form-group {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
}

label {
    font-size: 1.2rem;
    color: #333;
    font-weight: 500;
    margin-bottom: 8px;
}

input, select {
    padding: 12px;
    border: 2px solid #d0d7de;
    border-radius: 8px;
    font-size: 1.1rem;
    background-color: #f9fafb;
    transition: border-color 0.3s ease;
    width: 100%;
    box-sizing: border-box;
}

input:focus, select:focus {
    border-color: #f80f00;
    outline: none;
    box-shadow: 0 0 5px rgba(248, 15, 0, 0.5);
}

input[type="tel"], input[type="email"], input[type="text"] {
    margin-top: 5px;
}

input[type="checkbox"] {
    margin-right: 10px;
}

button {
    background-color: #f80f00;
    color: white;
    padding: 15px 25px;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    cursor: pointer;
    width: 100%;
    transition: background-color 0.3s ease, transform 0.2s ease;
    margin-top: 15px;
}

button:hover {
    background-color: #1b517d;
    transform: translateY(-2px);
}

.form-group span {
    font-size: 0.9rem;
    color: #333;
}

#results {
    margin-top: 30px;
}

#results h2 {
    color: #333;
    font-size: 1.5rem;
}

ul {
    list-style-type: none;
    padding: 0;
}

ul li {
    background-color: #f1f3f5;
    padding: 12px;
    margin-bottom: 10px;
    border-radius: 6px;
    border-left: 4px solid #f80f00;
}

@media (max-width: 600px) {
    .container {
        padding: 20px;
    }

    h1 {
        font-size: 1.8rem;
    }

    button {
        font-size: 1rem;
    }
}
