/* General Body Styling */
body {
    font-family: 'Roboto', Arial, sans-serif;
    background: linear-gradient(120deg, #1D3557, #457B9D); /* Dark and light blue gradient */
    color: #000000; /* Default text color set to black */
    margin: 0;
    padding: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    line-height: 1.6; /* Improved readability */
}

/* Paragraph Styling */
p {
    color: #000000; /* Black for default text */
    font-size: 1rem;
    margin-bottom: 15px;
}

/* Navbar Styling */
.navbar {
    background: linear-gradient(to right, #1D3557, #457B9D);
    border-bottom: 2px solid #0A2540; /* Darker blue for separation */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}
.navbar-brand, .nav-link {
    color: #F1FAEE !important; /* Soft white for text */
    font-weight: bold;
    font-size: 1.1rem;
    text-transform: none;
    letter-spacing: 0.5px;
}
.navbar-brand:hover, .nav-link:hover {
    color: #A8DADC !important; /* Muted teal hover effect */
    text-decoration: underline;
}

/* Accordion Styling */
.accordion-button {
    background: linear-gradient(45deg, #1D3557, #457B9D);
    color: #F1FAEE;
    font-weight: bold;
    border: none;
    transition: all 0.3s ease;
    padding: 10px 15px;
    border-radius: 5px;
}
.accordion-button:hover {
    background: linear-gradient(45deg, #457B9D, #1D3557);
    color: #A8DADC;
    transform: scale(1.03);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}
.accordion-button:not(.collapsed) {
    background: linear-gradient(45deg, #457B9D, #1D3557);
    color: #F1FAEE;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.4);
}

.accordion-body {
    background: rgba(255, 255, 255, 0.05); /* Very subtle transparency */
    color: #000000; /* Black for contrast */
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 5px;
    padding: 20px;
}

/* Container Styling */
.container {
    margin-top: 40px;
    flex: 1; /* Push footer to bottom */
    padding: 0 20px;
}

/* Headings Styling */
h1 {
    text-align: center;
    margin-bottom: 20px;
    font-weight: bold;
    text-transform: none;
    font-size: 2.5rem;
    background: linear-gradient(90deg, #A8DADC, #F1FAEE); /* Soft teal to white gradient */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.4);
    line-height: 1.2;
}

/* Footer Styling */
footer {
    text-align: center;
    padding: 15px 0;
    background: linear-gradient(to right, #1D3557, #457B9D);
    color: #F1FAEE;
    margin-top: 30px;
    box-shadow: 0 -2px 4px rgba(0, 0, 0, 0.3);
    font-size: 0.9rem;
}
footer a {
    color: #A8DADC; /* Muted teal */
    text-decoration: none;
    font-weight: bold;
}
footer a:hover {
    color: #F1FAEE;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-thumb {
    background: linear-gradient(45deg, #1D3557, #457B9D);
    border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(45deg, #457B9D, #1D3557);
}

/* Buttons & Links (Optional Universal Styling) */
button, .btn {
    background: linear-gradient(45deg, #1D3557, #457B9D);
    color: #F1FAEE;
    border: none;
    border-radius: 5px;
    padding: 10px 15px;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
}
button:hover, .btn:hover {
    background: linear-gradient(45deg, #457B9D, #1D3557);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.table {
    margin: 20px auto;
    width: 100%;
    background: #f9f9f9;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.table th {
    background: #1D3557; /* Dark blue for header */
    color: #ffffff;
    text-transform: uppercase;
    font-weight: bold;
}
.table td {
    font-size: 0.95rem;
    line-height: 1.6;
    vertical-align: top;
}
.table th:nth-child(1),
.table td:nth-child(1) {
    width: 30%; /* First column 30% */
}

.table th:nth-child(2),
.table td:nth-child(2) {
    width: 70%; /* Second column 70% */
}
ul {
    margin: 0;
    padding-left: 20px;
    list-style-type: disc;
    text-align: left;
}