a {
    text-decoration: none;
    color: navy;
}
a:visited {
    color: navy;
}
a:hover {
    text-decoration: underline;
}

h1 {
    font-size: 2rem; /* Smaller size for the title */
    color: navy;     /* Navy blue color */
}

h3 {
    font-size: 1.2rem; /* Smaller size for the subtitle */
    color: gray;       /* Gray color */
}

.red {
    color: red;
}

.child-protection {
    margin-top: 20px;
    padding: 20px;
    background-color: #f8f9fa;
    border: 1px solid #ddd;
    border-radius: 5px;
    text-align: left;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #333;
}
.child-protection h2 {
    color: #2E4479;
    margin-bottom: 10px;
}

.page {
    display: none; /* Hide all pages initially */
    animation: fadeIn 0.5s ease-in-out;
}

.page.active {
    display: block; /* Show only active page */
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

