/* Home Section */
.home-section {
    min-height: 600px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    padding: 20px;
    text-align: center;
}

/* Home Section Heading */
.home-section h1 {
    font-size: 3em;
    margin-bottom: 20px;
    font-weight: bold;
    color: #0056b3ff; /* Light text color for readability */
}

/* Home Section Paragraphs */
.home-section p {
    font-size: medium;
    margin-bottom: 20px;
    line-height: 1.6;
    color: #0056b3ff; /* Light text color for readability */
}

.benefits {
    background-color: white;
    padding: 30px;
    margin-bottom: 20px;
    width: 100%; /* Reduces width for smaller screens */
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    text-align: left;
}

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

.benefits li {
    margin-bottom: 15px;
    padding-left: 25px;
    position: relative;
}

.benefits li:before {
    content: "✓";
    color: #005b9f;
    position: absolute;
    left: 0;
}
