body {
    font-family: 'Inter', sans-serif;
    background-color: #f8f9fa; 
    color: #495057;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    color: #212529; 
}

.accent-color {
    color: #005A9C; 
}

.bg-accent-color {
    background-color: #005A9C;
}

.bg-accent-hover:hover {
    background-color: #003d6b;
}

a {
   color: #005A9C;
   font-weight: 500;
   text-decoration: none;
   transition: color 0.3s ease;
}

a:hover {
    color: #003d6b; 
    text-decoration: underline;
}

.content-section p, .content-section li {
    line-height: 1.8;
}

.main-content-card {
    background-color: #ffffff;
    border-radius: 0.75rem;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.07), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    border: 1px solid #e9ecef;
}

section {
    padding-top: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e9ecef;
}

section:last-of-type {
    border-bottom: none;
}

#toc a {
    font-weight: 500;
}

/* Button styles from index.html */
.link-button {
    display: block;
    text-align: center;
    background-color: #005A9C;
    color: #ffffff;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 500;
    transition: background-color 0.3s ease, transform 0.2s ease;
    text-decoration: none !important; /* Ensure no underline */
}
.link-button:hover {
    background-color: #004b80;
    transform: translateY(-2px);
    color: #ffffff;
}
.link-button.secondary {
    background-color: transparent;
    color: #005A9C;
    border: 1px solid #005A9C;
}
.link-button.secondary:hover {
     background-color: #e6f0f7;
     color: #005A9C;
}
