/* Custom CSS styles */
body {
    font-family: Arial, sans-serif;
    background-color: #f8f9fa;
}

.navbar {
    background-color: #343a40;
}

.fixed-navbar{
    position: fixed;
    width: 100%;top: 0;
    z-index: 1000;
}

.navbar-brand {
    color: #ffffff;
    font-weight: bold;
    font-size: 1.5rem;
}

.navbar-toggler {
    border-color: #ffffff;
}

.navbar-toggler-icon {
    background-color: #000000;
}

.navbar-nav .nav-link {
    color: #ffffff;
    font-weight: bold;
    padding: 0.5rem 1rem;
    margin: 0 0.5rem;
}

.navbar-nav .nav-link:hover {
    color: #dee2e6;
}

.content {
    padding: 40px;
    background-color: #ffffff;
    border-radius: 10px;
    margin-top: 20px;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
}

.content h2 {
    color: #343a40;
    margin-bottom: 30px;
    font-size: 2rem;
}

.content p {
    color: #6c757d;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.feature-list {
    list-style-type: none;
    padding-left: 0;
    font-size: 1.1rem;
}

.feature-list li {
    margin-bottom: 15px;
}

.feature-list li strong {
    color: #343a40;
}

.how-it-works {
    margin-top: 40px;
}

.get-started {
    margin-top: 40px;
}

.get-started h3 {
    color: #343a40;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.get-started ol {
    counter-reset: step;
    list-style-type: none;
    padding-left: 0;
}

.get-started ol li {
    margin-bottom: 15px;
}

.get-started ol li::before {
    content: counter(step);
    counter-increment: step;
    color: #343a40;
    font-weight: bold;
    font-size: 1.2rem;
    width: 30px;
    height: 30px;
    line-height: 30px;
    display: inline-block;
    text-align: center;
    border: 2px solid #343a40;
    border-radius: 50%;
    margin-right: 10px;
}

.get-started-btn{
    border: 1px solid rgb(121, 121, 121);
    width: 200px;
    font-size: 20px;
}

.get-started-btn:hover{
    box-shadow: 0px 6px 20px #474747;
}

.footer {
    background-color: #343a40;
    color: #ffffff;
    text-align: center;
    padding: 20px 0;
    position: fixed;
    bottom: 0;
    width: 100%;
}

.footer p {
    margin-bottom: 0;
}