/* Add here all your CSS customizations */
.key-features,
        .benefits {
            margin-bottom: 20px;
        }

        .key-features h2,
        .benefits { 
            color: #3366cc;
        }

        .key-features ul,
        .benefits ul {
            list-style-type: disc;
            margin-left: 20px;
        }

        .conclusion {
            margin-top: 40px;
        }

/* Contact Us Pop-up Form */

/* Basic Styling for the Popup */
.modal {
    display: none; 
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.4);
}

.modal-content {
    background-color: #fefefe;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    max-width: 600px;
    border-radius: 10px;
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
}

/* Contact Button Container */
.centered {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px; /* Set margin for the centered div */
}

.contact-btn {
    background-color: #007bff;
    color: white;
    padding: 15px 30px; /* Set padding for height and width */
    font-size: 16px;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    width: 200px; /* Set width */
    height: 50px; /* Set height */
}

.contact-btn:hover {
    background-color: #0056b3;
}

/* Submit Button */
.submit-btn {
    display: block;
    background-color: #28a745;
    color: white;
    padding: 10px 20px;
    font-size: 16px;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    margin-top: 10px;
}

.submit-btn:hover {
    background-color: #218838;
}

/* Form Input Styles */
input[type="text"],
input[type="email"],
textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 5px;
    border: 1px solid #ccc;
    box-sizing: border-box;
}

input[type="text"]:focus,
input[type="email"]:focus,
textarea:focus {
    border-color: #007bff;
}

input[type="submit"] {
    width: 100%;
    background-color: #007bff;
    color: white;
    border: none;
    padding: 10px;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

input[type="submit"]:hover {
    background-color: #0056b3;
}
