.form-layout{
    border-radius: 15px;
    width: 500px;
}

a.btn-success {
    color: #fff;
    background-color: rgb(210, 38, 38);
    border-color: rgb(210, 38, 38);
}

.message-text {
    color: white;
}

a.buy-button {
    text-decoration: none;
}

a.buy-button:hover {
    color: white;
}

/* First Page Modification */

/* Section styling */
.main-section {
    background: #fff;
    margin: 20px 0;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}


/* Features list styling */
.main-features-list {
    list-style-type: none;
    padding: 0;
}

.main-features-list li {
    background: #e9f5fb;
    margin: 10px 0;
    padding: 10px;
    border-radius: 5px;
    font-size: 1rem;
    line-height: 1.5;
}

/* Override Bootstrap specific components if needed */

.main-section h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #000000;
}

/* First Page Modification End */

.img-responsive {
    max-width: 100%; /* Makes the image use up to 100% of the container's width */
    height: auto; /* Keeps the image's aspect ratio intact */
    display: block; /* Ensures the image is block-level for width to work */
}