
body {
    font-family: 'Lato', sans-serif;
    background-color: #f0f0f0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.sticky-header {
    position: sticky;
    top: 0;
    background-color: #022561;
    color: #fff;
    padding: 10px 20px;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.sticky-header img {
    max-height: 50px;
}

.container {
    background-color: #ffffff;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-top: 30px;
    text-align: -webkit-center;
    flex: 1;
}

h1 {
    color: #343a40;
}

.btn {
    background-color: #0056b3;
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 10px 20px;
    transition: background-color 0.3s, transform 0.2s;
}

.btn:hover {
    background-color: #004494;
    transform: scale(1.05);
}

footer {
    background-color: #2D2B2B;
    color: #fff;
    text-align: center;
    padding: 20px 10px;
    margin-top: 30px;
    position: sticky;
    bottom: 0;
    width: 100%;
}

footer img {
    max-height: 40px;
    margin-bottom: 10px;
}

/* Kathy Kato style accordion */
.accordion {
    width: 100%;
    
}

.accordion-item {
    border-bottom: 1px solid #ccc;
    
}

.accordion-item input {
    display: none;
}

.accordion-item label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    color: #022561;
    cursor: pointer;
    font-weight: 600;
}

.accordion-item label:hover {
    background: #f5f5f5;
}

.accordion-item .icon::before {
    content: '+';
    font-size: 20px;
}

.accordion-item input:checked + label .icon::before {
    content: '-';
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 15px;
    text-align: justify;
    background-color: #f9f9f9;
    color: #343a40;
    overflow: scroll;
}

.accordion-item input:checked ~ .accordion-content {
    max-height: 300px;
    padding: 15px;
}

@media (max-width: 768px) {
    .container {
        width: 90%;
        margin: auto;
    }

    .sticky-header {
        text-align: center;
    }
    
    .ound{
        max-width:80%;
        
    }
}
