/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body Styling */
body {
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f7f7f7;
    margin: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Header */
header {
    background-color: #333;
    color: #eaeaea;
    text-align: center;
    padding: 20px;
    border-bottom: 4px solid #0077b6;
}

header h1 {
    font-size: 2rem;
    margin-bottom: 10px;
}

header p {
    font-size: 1rem;
    color: #bbb;
}

/* Main Content */
main {
    flex: 1;
    width: 90%;
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

section {
    margin-bottom: 30px;
}

section h2 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #444;
    border-left: 4px solid #0077b6;
    padding-left: 10px;
}

.section-description {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 15px;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

ul li {
    margin-bottom: 10px;
    display: flex;
    align-items: center; /* Align bullet and text */
    gap: 8px; /* Space between bullet and text */
}

ul li::before {
    content: "•"; /* Bullet symbol */
    color: #0077b6; /* Bullet color */
    font-size: 1.2rem; /* Slightly larger bullet */
    line-height: 0; /* Align vertically */
}


ul li a {
    text-decoration: none;
    color: #0077b6;
    font-weight: 500;
    transition: color 0.3s ease, border-bottom 0.3s ease;
    border-bottom: 2px solid transparent; /* Add a transparent border */
}

ul li a:hover {
    color: #005f99;
    border-bottom: 2px solid #005f99; /* Change border color on hover */
}

/* Footer */
footer {
    text-align: center;
    background-color: #333;
    color: #eaeaea;
    padding: 10px;
    font-size: 0.9rem;
    border-top: 4px solid #0077b6;
}

/* Responsive Design */
@media (max-width: 600px) {
    header h1 {
        font-size: 1.8rem;
    }

    header p {
        font-size: 0.9rem;
    }

    section h2 {
        font-size: 1.3rem;
    }

    .section-description {
        font-size: 0.85rem;
    }
}
