html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    font-family: 'Open Sans', sans-serif;
    color: #333;
    background-color: rgb(170,158,234);
}

h1, h2 {
    font-family: 'Montserrat', sans-serif;
}

.btn {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    text-transform: uppercase;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: #007bff;
    color: white;
}

.btn-primary:hover {
    background-color: #0056b3;
}

.btn-secondary {
    background-color: #6c757d;
    color: white;
}

.btn-secondary:hover {
    background-color: #545b62;
}

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

.features li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.features li::before {
    content: '✔';
    color: #007bff; /* match with btn-primary for consistency */
    margin-right: 8px;
}

@media (max-width: 768px) {
    .btn {
        width: 100%;
        margin-bottom: 10px;
    }
}

.custom-bg-color {
    background-color: rgb(170,158,234);
}

.custom-footer-color {
    background-color: rgb(62, 54, 145);
}

.custom-header-color {
    background-color: rgb(62, 54, 145);
}

body {
    display: flex;
    flex-direction: column;
}

.container {
    flex: 1;
}
