/* ===================================
   Interactive Infographic Styles
   =================================== */

/* Progress Tracker */
.progress-tracker {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    margin: 3rem auto 2rem;
    max-width: 900px;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.progress-step:hover .progress-circle {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(0, 68, 129, 0.3);
}

.progress-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #e2e8f0;
    border: 3px solid #cbd5e1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #64748b;
    transition: all 0.3s ease;
}

.progress-step.active .progress-circle {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
    box-shadow: 0 4px 12px rgba(0, 68, 129, 0.4);
}

.progress-step.completed .progress-circle {
    background: var(--accent-green);
    border-color: var(--accent-green);
    color: white;
}

.progress-step.completed .progress-circle i::before {
    content: "\f00c";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
}

.progress-step span {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-light);
    text-align: center;
    max-width: 100px;
}

.progress-step.active span {
    color: var(--primary-color);
}

.progress-line {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #cbd5e1 0%, #cbd5e1 100%);
    position: relative;
    margin: 29px 1rem 0;
}

.progress-line.completed {
    background: linear-gradient(90deg, var(--accent-green) 0%, var(--accent-green) 100%);
}

/* Page Title */
.page-title {
    text-align: center;
    margin: 2rem 0 3rem;
}

.page-title h1 {
    font-size: 2.5rem;
    color: var(--primary-dark);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.page-title h1 i {
    color: var(--accent-color);
}

.subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    font-weight: 500;
}

/* Infographic Container */
.infographic-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto 3rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.infographic-image {
    width: 100%;
    height: auto;
    display: block;
}

/* Interactive Hotspots - 30% larger for better visibility */
.infographic-hotspot {
    position: absolute;
    background: rgba(0, 68, 129, 0.95);
    color: white;
    border: 4px solid white;
    border-radius: 50%;
    width: 91px;
    height: 91px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 16px rgba(0, 68, 129, 0.4);
    font-weight: 700;
    z-index: 10;
}

.infographic-hotspot:hover {
    transform: scale(1.15);
    background: rgba(0, 68, 129, 1);
    box-shadow: 0 8px 24px rgba(0, 68, 129, 0.6);
}

.infographic-hotspot:active {
    transform: scale(1.05);
}

.hotspot-label {
    font-size: 0.9rem;
    font-weight: 800;
    margin-bottom: 0.25rem;
}

.infographic-hotspot i {
    font-size: 1.2rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.6;
    }
}

/* Hotspot Positions */
.krok-1 {
    top: 1.0%;
    left: 39.7%;
}

.krok-2 {
    top: 30.2%;
    left: 39.3%;
}

.krok-3 {
    top: 51.6%;
    left: 38.8%;
}

.krok-4 {
    top: 76.7%;
    left: 38.5%;
}

/* Interactive Icons */
.infographic-icon {
    position: absolute;
    background: rgba(0, 68, 129, 0.85);
    color: white;
    border: 2px solid white;
    border-radius: 8px;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.3rem;
    z-index: 5;
}

.infographic-icon:hover {
    transform: scale(1.2) rotate(5deg);
    background: rgba(0, 68, 129, 1);
    box-shadow: 0 4px 12px rgba(0, 68, 129, 0.4);
}

/* Icon Positions */
.icon-electronic {
    top: 13.0%;
    left: 47.3%;
}

.icon-email {
    top: 11.2%;
    left: 77.9%;
}

.icon-payment {
    top: 63.4%;
    left: 89.1%;
}

.icon-download {
    top: 82.8%;
    left: 77.3%;
}



/* Downloadable Documents Section */
.documents-section {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    padding: 3rem 0;
    margin: 3rem 0;
    border-radius: 12px;
}

.documents-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1rem;
}

.documents-title {
    font-size: 2rem;
    color: var(--primary-dark);
    text-align: center;
    margin-bottom: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.documents-title i {
    color: var(--primary-color);
}

.documents-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.document-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.document-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.document-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 12px rgba(0, 68, 129, 0.3);
}

.document-icon.excel {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.document-icon.pdf {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
}

.document-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.document-content h3 {
    font-size: 1.4rem;
    color: var(--primary-dark);
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.document-content p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
    flex: 1;
}

.document-download-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.9rem 2rem;
    background: var(--primary-color);
    color: white;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 68, 129, 0.2);
    font-size: 1rem;
}

.document-download-btn:hover {
    background: var(--primary-dark);
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(0, 68, 129, 0.3);
    color: white;
}

.document-card:nth-child(1) .document-download-btn {
    background: var(--primary-color);
}

.document-card:nth-child(2) .document-download-btn {
    background: #10b981;
}

.document-card:nth-child(2) .document-download-btn:hover {
    background: #059669;
}

.document-card:nth-child(3) .document-download-btn {
    background: var(--primary-color);
}

.document-card:nth-child(3) .document-download-btn:hover {
    background: var(--primary-dark);
}

/* Modal Overlay */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    backdrop-filter: blur(4px);
    animation: fadeIn 0.3s ease;
}

.modal-overlay.active {
    display: flex;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Modal Container */
.modal-container {
    background: white;
    border-radius: 16px;
    max-width: 700px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.4s ease;
    position: relative;
}

.modal-container.modal-small {
    max-width: 450px;
    text-align: center;
    padding-bottom: 1rem;
}

.modal-container.modal-small h3 {
    justify-content: center;
    margin-top: 0.5rem;
}

.modal-container.modal-small p {
    margin-bottom: 2rem;
    padding: 0 1rem;
}

.modal-container.modal-small .btn-link,
.modal-container.modal-small .email-link {
    display: inline-flex;
    justify-content: center;
    margin: 0 auto;
}

.modal-container.modal-small .simple-list {
    text-align: left;
    display: inline-block;
    margin: 0 auto;
}

.modal-container.modal-small .format-badges {
    justify-content: center;
    margin-bottom: 1rem;
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Modal Close Button */
.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(0, 0, 0, 0.1);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.3rem;
    color: var(--text-color);
    transition: all 0.2s ease;
    z-index: 10;
}

.modal-close:hover {
    background: rgba(0, 0, 0, 0.2);
    transform: rotate(90deg);
}

/* Modal Header */
.modal-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 2.5rem 2rem 2rem;
    position: relative;
}

.step-badge {
    background: rgba(255, 255, 255, 0.2);
    display: inline-block;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    border: 2px solid rgba(255, 255, 255, 0.4);
}

.modal-header h2 {
    font-size: 2rem;
    margin: 0;
    font-weight: 700;
}

/* Modal Body */
.modal-body {
    padding: 2rem;
}

.modal-body h3 {
    color: var(--primary-dark);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
}

.modal-body h4 {
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    font-size: 1.2rem;
}

.modal-body p {
    margin-bottom: 1rem;
    line-height: 1.7;
}

/* Path Options */
.path-option {
    background: #f8fafc;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    position: relative;
}

.path-option.recommended {
    border-color: var(--accent-green);
    background: linear-gradient(135deg, #f0fdf4 0%, #f8fafc 100%);
}

.option-badge {
    position: absolute;
    top: -12px;
    right: 1.5rem;
    background: var(--accent-green);
    color: white;
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3);
}

.option-badge.mini {
    top: 0.5rem;
    right: 0.5rem;
    font-size: 0.7rem;
    padding: 0.2rem 0.7rem;
}

/* Documents Links in Modal */
.documents-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1rem;
}

.documents-links .btn-link {
    margin: 0;
}

/* Lists */
.feature-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.feature-list li {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-color);
}

.feature-list i {
    color: var(--accent-green);
    font-size: 1.1rem;
}

.option-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.option-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #e2e8f0;
}

.option-list li:last-child {
    border-bottom: none;
}

.simple-list {
    list-style: none;
    padding: 0;
}

.simple-list li {
    padding: 0.75rem 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.05rem;
}

.simple-list i {
    color: var(--primary-color);
    width: 24px;
}

/* Info Boxes */
.info-box {
    background: #eff6ff;
    border-left: 4px solid var(--primary-color);
    padding: 1rem 1.5rem;
    border-radius: 8px;
    margin: 1.5rem 0;
    display: flex;
    gap: 1rem;
}

.info-box i {
    color: var(--primary-color);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.warning-box {
    background: #fff7ed;
    border-left: 4px solid #f59e0b;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    margin: 1.5rem 0;
    display: flex;
    gap: 1rem;
}

.warning-box i {
    color: #f59e0b;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.success-box {
    background: #f0fdf4;
    border-left: 4px solid var(--accent-green);
    padding: 1rem 1.5rem;
    border-radius: 8px;
    margin: 1.5rem 0;
    display: flex;
    gap: 1rem;
}

.success-box i {
    color: var(--accent-green);
    font-size: 1.5rem;
    flex-shrink: 0;
}

/* Timeline */
.timeline {
    margin: 2rem 0;
}

.timeline-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.timeline-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.timeline-content h4 {
    margin-bottom: 0.5rem;
}

/* Payment Options */
.payment-options {
    display: grid;
    gap: 1.5rem;
    margin: 1.5rem 0;
}

.payment-option {
    background: #f8fafc;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    padding: 1.5rem;
    position: relative;
}

.payment-option.recommended {
    border-color: var(--accent-green);
    background: linear-gradient(135deg, #f0fdf4 0%, #f8fafc 100%);
}

.payment-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: var(--primary-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.payment-option code {
    background: white;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    display: block;
    margin: 0.5rem 0;
    font-family: 'Courier New', monospace;
    border: 1px solid #e2e8f0;
}

/* Delivery Options */
.delivery-options {
    display: grid;
    gap: 1.5rem;
    margin: 1.5rem 0;
}

.delivery-option {
    background: #f8fafc;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    padding: 1.5rem;
}

.delivery-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: var(--accent-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

/* Format Badges */
.format-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 1rem 0;
}

.format-badge {
    background: var(--primary-color);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    font-family: 'Courier New', monospace;
}

/* License Section */
.license-section {
    background: #fefce8;
    border: 2px solid #fde047;
    border-radius: 12px;
    padding: 1.5rem;
    margin: 1.5rem 0;
}

/* Buttons */
.btn-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--primary-color);
    color: white;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    margin: 0.5rem 0;
}

.btn-link:hover {
    background: var(--primary-dark);
    transform: translateX(5px);
    color: white;
}

.btn-link.btn-orange {
    background: var(--primary-color);
    padding: 0.64rem 1.28rem;
    font-size: 0.85rem;
}

.btn-link.btn-orange:hover {
    background: var(--primary-dark);
}

.form-downloads {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1rem;
}

.email-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.2rem;
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    padding: 0.5rem 0;
}

.email-link:hover {
    color: var(--accent-color);
}

/* Modal Footer */
.modal-footer {
    padding: 1.5rem 2rem;
    border-top: 1px solid #e2e8f0;
    display: flex;
    justify-content: space-between;
    gap: 1rem;
}

.btn-prev,
.btn-next,
.btn-finish {
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
}

.btn-prev {
    background: #e2e8f0;
    color: var(--text-color);
}

.btn-prev:hover {
    background: #cbd5e1;
}

.btn-next,
.btn-finish {
    background: var(--primary-color);
    color: white;
    margin-left: auto;
}

.btn-next:hover,
.btn-finish:hover {
    background: var(--primary-dark);
    transform: translateX(3px);
}

.btn-finish {
    background: var(--accent-green);
}

.btn-finish:hover {
    background: #059669;
}

/* Utility Classes */
.mt-1 {
    margin-top: 0.5rem;
}

.text-sm {
    font-size: 0.9rem;
}

/* Success Notification */
.success-notification {
    position: fixed;
    top: 2rem;
    right: 2rem;
    background: linear-gradient(135deg, var(--accent-green) 0%, #059669 100%);
    color: white;
    padding: 1.5rem 2rem;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.4);
    display: none;
    align-items: center;
    gap: 1rem;
    z-index: 10000;
    animation: slideInRight 0.4s ease;
    max-width: 400px;
}

.success-notification.show {
    display: flex;
}

@keyframes slideInRight {
    from {
        transform: translateX(400px);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOutRight {
    from {
        transform: translateX(0);
        opacity: 1;
    }

    to {
        transform: translateX(400px);
        opacity: 0;
    }
}

.success-notification i {
    font-size: 2rem;
    flex-shrink: 0;
}

.success-notification .notification-content h4 {
    margin: 0 0 0.5rem 0;
    font-size: 1.2rem;
}

.success-notification .notification-content p {
    margin: 0;
    font-size: 0.95rem;
    opacity: 0.95;
}

/* Responsive Design */
@media (max-width: 768px) {
    .progress-tracker {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        padding: 1.5rem;
    }

    .progress-line {
        display: none;
    }

    .page-title h1 {
        font-size: 1.8rem;
    }

    .subtitle {
        font-size: 1rem;
    }

    .infographic-hotspot {
        width: 60px;
        height: 60px;
        font-size: 0.8rem;
    }

    .hotspot-label {
        font-size: 0.7rem;
    }

    .infographic-icon {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }



    .documents-grid {
        grid-template-columns: 1fr;
    }

    .modal-container {
        max-width: 95%;
        max-height: 95vh;
    }

    .modal-header h2 {
        font-size: 1.5rem;
    }

    .modal-body {
        padding: 1.5rem;
    }

    .modal-footer {
        flex-direction: column;
        padding: 1rem;
    }

    .btn-prev,
    .btn-next,
    .btn-finish {
        width: 100%;
        justify-content: center;
    }

    .btn-next,
    .btn-finish {
        margin-left: 0;
    }

    .success-notification {
        top: 1rem;
        right: 1rem;
        left: 1rem;
        max-width: none;
    }

    .documents-title {
        font-size: 1.5rem;
        flex-direction: column;
        gap: 0.5rem;
    }

    .document-card {
        padding: 1.5rem;
    }

    .document-icon {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }

    .document-content h3 {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .infographic-hotspot {
        width: 50px;
        height: 50px;
    }

    .hotspot-label {
        font-size: 0.6rem;
    }

    .page-title h1 {
        font-size: 1.5rem;
        flex-direction: column;
    }

    .modal-header {
        padding: 2rem 1.5rem 1.5rem;
    }

    .documents-section {
        padding: 2rem 0;
    }

    .document-download-btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
}

/* Image Button Link */
.img-btn-link {
    display: inline-block;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    max-width: 300px;
}

.img-btn-link:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    border-color: var(--primary-color);
}

.img-fluid {
    width: 100%;
    height: auto;
    display: block;
}

/* Copy Button Small */
.btn-copy-sm {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.3rem 0.6rem;
    background: #e2e8f0;
    border: 1px solid #cbd5e1;
    border-radius: 4px;
    font-size: 0.75rem;
    cursor: pointer;
    margin-left: 0.5rem;
    color: var(--text-color);
    transition: all 0.2s ease;
}

.btn-copy-sm:hover {
    background: #cbd5e1;
    color: var(--primary-dark);
}

.btn-copy-sm.copied {
    background: var(--accent-green);
    color: white;
    border-color: var(--accent-green);
}
/* High Contrast Overrides */
html.high-contrast .page-title h1,
html.high-contrast .subtitle,
html.high-contrast .progress-tracker,
html.high-contrast .progress-circle,
html.high-contrast .infographic-container,
html.high-contrast .documents-section,
html.high-contrast .document-card,
html.high-contrast .action-card,
html.high-contrast .modal-container,
html.high-contrast .path-option,
html.high-contrast .info-box,
html.high-contrast .warning-box,
html.high-contrast .success-box,
html.high-contrast .payment-option,
html.high-contrast .delivery-option {
    background: #000000 !important;
    background-image: none !important;
    color: #ffff00 !important;
    border: 2px solid #ffff00 !important;
    box-shadow: none !important;
}

html.high-contrast .progress-step.active .progress-circle,
html.high-contrast .infographic-hotspot,
html.high-contrast .infographic-icon,
html.high-contrast .document-icon,
html.high-contrast .document-download-btn,
html.high-contrast .step-badge,
html.high-contrast .timeline-icon,
html.high-contrast .payment-icon,
html.high-contrast .delivery-icon {
   background: #000000 !important;
   border: 2px solid #ffff00 !important;
   color: #ffff00 !important;
}

html.high-contrast .modal-header {
    background: #000 !important;
    border-bottom: 2px solid #ff0 !important;
}

html.high-contrast .document-content h3,
html.high-contrast .document-content p,
html.high-contrast .feature-list li,
html.high-contrast .feature-list i,
html.high-contrast h3, 
html.high-contrast h4 {
    color: #ffff00 !important;
}
