.banner {
    background: linear-gradient(135deg, #1f4f9e 0%, #0671b9 100%);
    color: white;
    padding: 2rem 0;
    margin-bottom: 2rem;
}

.responsive-image {
  max-width: 8em;
  height: auto;
}

.logo-placeholder {
    background: rgba(255, 255, 255, 0.7);
    /*border: 2px dashed rgba(255, 255, 255, 0.5);*/
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    margin-bottom: 1.5rem;
}


.section-header {
    background: linear-gradient(90deg, #f8f9fa 0%, #e9ecef 100%);
    border-left: 4px solid #cd1719;
    padding: 1rem;
    margin: 2rem 0 0 0;
    border-radius: 5px 5px 0 0;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid #a6a6a8;
}

.section-header:hover {
    background: linear-gradient(90deg, #e9ecef 0%, #dee2e6 100%);
    transform: translateY(-1px);
}

.section-header.collapsed {
    border-radius: 5px;
    margin-bottom: 1rem;
}

.section-content {
    border: 1px solid #a6a6a8;
    border-top: none;
    border-radius: 0 0 5px 5px;
    background: #fff;
}

.accordion-icon {
    float: right;
    transition: transform 0.3s ease;
    font-size: 1.2rem;
    color: #cd1719;
}

.accordion-icon.rotated {
    transform: rotate(180deg);
}

.step-item {
    background: #fff;
    border: 1px solid #a6a6a8;
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    box-shadow: 0 2px 4px rgba(106, 106, 105, 0.1);
    transition: transform 0.2s ease;
}

.step-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(106, 106, 105, 0.15);
}

.step-number {
    background: #e0e0e0;
    color: white;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-right: 1rem;
    flex-shrink: 0;
}

.sub-step {
    background: #f8f9fa;
    border-left: 3px solid #0671b9;
    padding: 1rem;
    margin: 1rem 0;
    border-radius: 0 5px 5px 0;
}

.important-note {
    background: linear-gradient(90deg, #fff3cd 0%, #ffeaa7 100%);
    border: 1px solid #cd1719;
    border-radius: 8px;
    padding: 1rem;
    margin: 1rem 0;
}

.contact-info {
    background: linear-gradient(135deg, #0671b9 0%, #1f4f9e 100%);
    color: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    margin-top: 3rem;
}

.link-button {
    background: #17a2b8;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    text-decoration: none;
    display: inline-block;
    margin: 0.25rem;
    transition: background 0.2s ease;
}

.link-button:hover {
    background: #138496;
    color: white;
    text-decoration: none;
}

.page-footer {
    background: #343a40;
    color: white;
    text-align: center;
    padding: 2rem 0;
    margin-top: 4rem;
}

.quick-nav {
    background: linear-gradient(90deg, #000000 0%, #6a6a69 100%);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.nav-button {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    margin: 0.25rem;
    border-radius: 25px;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.nav-button:hover {
    background: rgba(205, 23, 25, 0.8);
    color: white;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(205, 23, 25, 0.3);
}

.loading {
    text-align: center;
    padding: 3rem;
    color: #6a6a69;
}

@media (max-width: 768px) {
    .nav-button {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
        margin: 0.2rem;
    }
}