body {
    font-family: Arial, sans-serif;
    background: #f4f4f4;
    margin: 0;
    padding: 20px;
}

/* Center headings */
h1, h2 {
    text-align: center;
    margin-bottom: 20px;
    margin-top:100px;
}

/* Services list on home page */
.services-list {
    list-style: none;
    text-align: center;
    padding: 0;
}

.services-list li {
    margin: 15px 0;
}

.services-list a {
    text-decoration: none;
    font-size: 20px;
    color: #18B848;
}

.services-list a:hover {
    color:#390A5D;
}

/* Form container - center in page */
form {
    background: white;
    padding: 25px;
    border-radius: 8px;
    max-width: 600px;
    margin: 30px auto; /* centers the form */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    text-align: left; /* keep labels and inputs left aligned inside form */
}

/* Form inputs */
input[type="text"],
input[type="email"],
input[type="number"] {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border-radius: 4px;
    border: 1px solid #ccc;
    font-size: 16px;
    font-weight: bold;
}

/* Buttons */
input[type="submit"],
button {
    padding: 12px 25px;
    background-color: #C5F1C7;
    color:#18B848;
    border: none;
    cursor: pointer;
    border-radius: 4px;
    font-size: 16px;
}

input[type="submit"]:hover,
button:hover {
    background-color:#B3EBB5;
    color:#390A5D;
}

/* Result boxes */
#result,
#credit-score-result {
    margin-top: 20px;
    padding: 15px;
    background: #e9f7ef;
    border-radius: 5px;
    font-size: 18px;
    text-align: center;
}
