.accordion-item {
     border: 1px solid #e2e2e2;
     border-radius: 8px;
     margin-bottom: 8px;
     overflow: hidden;
}
 .accordion {
     all: unset;
     display: flex;
     align-items: center;
     justify-content: space-between;
     width: 100%;
     box-sizing: border-box;
     padding: 16px 18px;
     background-color: #0075aa;
     color: #ffffff;
     cursor: pointer;
     font-size: 22px;
     font-weight: 500;
     text-align: left;
     border-left: 4px solid transparent;
     transition: background-color 0.4s ease;
}
 .accordion:hover {
     background-color: #033b4b;
}
 .accordion .chevron {
     font-size: 14px;
     color: #ffffff;
     transition: transform 0.2s ease;
}
 .accordion.active .chevron {
     transform: rotate(90deg);
}
 .panel {
     max-height: 0;
     overflow: hidden;
     background-color: #ffffff;
     transition: max-height 0.25s ease;
}
 .panel-inner {
     padding: 4px 18px 8px;
}
 .accordion-item .panel h3 {
     font-size: 15px !important;
     font-weight: 700 !important;
     text-transform: uppercase !important;
     letter-spacing: 0.02em !important;
     color: #0075aa !important;
     margin: 32px 0 10px !important;
     padding-bottom: 8px !important;
     border-bottom: 2px solid #0075aa !important;
     line-height: 1.4 !important;
}
 .accordion-item .panel h3:first-child {
     margin-top: 12px !important;
}
 .section-note {
     display: flex !important;
     align-items: center !important;
     gap: 10px !important;
     font-size: 14px !important;
     color: #1a1a1a !important;
     background-color: #e4e9f1 !important;
     border-radius: 6px !important;
     padding: 12px 18px !important;
     margin: 4px 0 12px !important;
}
 .section-note::before {
     content: "\f05a";
     font-family: "Font Awesome 6 Free";
     font-weight: 900;
     color: #0075aa;
     font-size: 16px;
     flex-shrink: 0;
}
 .form-entry {
     display: flex;
     align-items: center;
     justify-content: space-between;
     gap: 20px;
     padding: 16px 0;
     border-bottom: 1px solid #ececec;
}
 .form-entry.last-in-section {
     border-bottom: none !important;
}
 .form-title {
     margin: 0;
     font-size: 18px;
     font-weight: 500;
     color: #1a1a1a;
     flex: 1;
}
 .form-links {
     display: flex;
     align-items: center;
     gap: 0.75rem;
     flex-shrink: 0;
}
 .form-entry:last-child {
     border-bottom: none;
}
 .form-links a {
     display: inline-flex;
     align-items: center;
     padding: 8px 14px;
     width: auto;
     font-size: 16px;
     font-weight: 500;
     border-radius: 10px;
     background-color: #0075aa !important;
     color: #ffffff !important;
     text-decoration: none !important;
}
 .form-links a:hover {
     background-color: #033b4b !important;
     transition: background-color 0.4s ease !important;
}
 .download-form-button {
     display: block;
     text-align: center;
}
 .download-form-button span {
     display: block;
     font-size: 11px;
     color: #5a5a5a;
     line-height: 1.3;
     white-space: nowrap;
}
 .download-form-button span:first-child {
     margin-bottom: 4px;
}
 .download-form-button span:last-child {
     margin-top: 4px;
}
 