body {
    font-family: 'Poppins', Arial, sans-serif;
    background-color: #000;
    color: #fff;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh; /* Ensures the page takes at least the height of the viewport */
}
.navbar {
    background-color: #121212;
    border-radius: 10px;
}
.navbar-brand {
    font-weight: 700;
    font-size: 1.5em;
}
.navbar-nav .nav-link {
    color: #fff;
    margin-right: 20px;
}
.section-header {
    text-align: center;
    margin: 40px 0;
    opacity: 0; /* Start hidden */
    transform: translateY(20px); /* Start slightly down */
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.section-header.visible {
    opacity: 1;
    transform: translateY(0);
}
.section-content {
    margin: 20px 0;
}
.description-section {
    background: #1a1a1a;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(255,255,255,0.2);
    margin-bottom: 20px;
    opacity: 0; /* Start hidden */
    transform: translateY(20px); /* Start slightly down */
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.description-section.visible {
    opacity: 1;
    transform: translateY(0);
}
.description-section h4 {
    margin-bottom: 10px;
}
.description-section p {
    margin-bottom: 10px;
}
.numbered-list p {
    margin-bottom: 10px;
}
.numbered-list p::before {
    content: counter(list-item) ". ";
    counter-increment: list-item;
    display: inline-block;
    width: 1.5em; /* Adjust width to align the text properly */
    margin-left: -1.5em; /* Negative margin to align numbers and text */
}
.numbered-list {
    counter-reset: list-item;
    list-style: none;
    padding-left: 20px; /* Indent to match negative margin of ::before */
}
footer {
    background-color: #121212;
    color: #fff;
    text-align: center;
    padding: 20px 10px;
    width: 100%;
    flex-shrink: 0; /* Ensures footer doesn't shrink */
    margin-top: auto; /* Pushes footer to bottom */
    border-radius: 10px;
}
.navbar-nav .nav-item {
    text-align: center;
}
.navbar-toggler-icon {
    color: aliceblue;
}
.contact-us:hover {
    color: #121212;
    font-weight: bolder;
}