 /* Reset some default styles */
 body, h1, h2, p {
    margin: 0;
    padding: 0;
}

/* Basic styling for the page */
body {
    font-family: Arial, sans-serif;
    background-color: #f5f5f5;
    color: #333;
    margin: 0;
    padding: 0;
}

header {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 20px 0;
}

header h1 {
    font-size: 24px;
}

main {
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

/* Styling for individual feature sections */
.feature {
    margin-bottom: 20px;
    border: 1px solid #ddd;
    padding: 20px;
    border-radius: 5px;
}

.feature h2 {
    font-size: 20px;
    color: #333;
}

.feature p {
    font-size: 16px;
    line-height: 1.5;
}

        /* Center-align the content within the container */
footer {
    text-align: center;
    background-color: #0a091f; /* Background color for the footer */
    color: #0a091f; /* Text color for the footer */
    padding: 20px 0; /* Add padding for spacing */
}
/* Style for the subscribe form */
footer form {
    max-width: 300px; /* Set a maximum width for the form */
    margin: 0 auto; /* Center the form horizontally */
}

footer input.form-control {
    border-radius: 0; /* Remove rounded corners on input field */
}

footer button.btn {
    border-radius: 0; /* Remove rounded corners on button */
    background-color: #21f391;
}

/* Style for the payment icons */
footer img {
    margin-top: 20px; /* Add some spacing between the subscribe form and payment icons */
    align-items: center;
}
/* Centered footer content */
    .centered-footer {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    /* Style for the "Terms" and "Policy" links */
    .footer-links a {
        color: #333;
        text-decoration: underline;
        margin: 0 5px;
    }
    .footer.container.centered-footer{
        background-color: #0a091f;
    }
footer.container{
    background-color: #0a091f;
}