.navbar {
    background-color: #222;
    padding: 1rem 0;
    border-bottom: 3px solid #ff6600;
}

.navbar-brand {
    color: #ff6600;
    font-size: 1.5rem;
    font-weight: bold;
    font-family: 'Segoe UI', sans-serif;
}

.navbar-nav .nav-link {
    color: #fff;
    font-size: 1.2rem;
    margin-right: 1.5rem;
    transition: color 0.3s ease-in-out;
}

.navbar-nav .nav-link:hover {
    color: #ff6600;
}

.navbar-toggler-icon {
    background-color: #fff;
}


.list-group {
    border-radius: 0px;
    overflow: hidden;
}

.list-group-item {
    background-color: #f8f9fa;
    border: none;
    border-radius: 0;
    transition: background-color 0.3s ease-in-out;
}

.list-group-item:hover {
    background-color: #ff6600;
    color: #fff;
}

.card {
    border: none;
    border-radius: 10px;
    background-color: #f8f9fa;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.card-body {
    padding: 2rem;
}

.card-title {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.card-text {
    font-size: 1.1rem;
    color: #555;
}

body {
    position: relative;
    min-height: 100vh;
    font-family: 'Roboto', sans-serif;
    /* Ensure the page takes up at least the full viewport height */
}

.footer {
    background-color: #222;
    color: #fff;
    padding: 3rem 0;
    width: 100%;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    margin-right: 1.5rem;
    transition: color 0.3s ease-in-out;
}

.footer-links a:hover {
    color: #ff6600;
}

.social-icons a {
    color: #fff;
    font-size: 1.5rem;
    margin-right: 1rem;
    transition: color 0.3s ease-in-out;
}

.social-icons a:hover {
    color: #ff6600;
}

.fancy-list {
    list-style-type: none;
    padding-left: 0;
}

.fancy-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 3px;
}

.fancy-list li:before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    background-color: #ff6600;
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

body{
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}
footer{
    margin-top: auto;
}