.header-nav-right {
    padding-left: 0;
    margin: 0;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 10;
}

.header-nav-right li {
    display: flex;
    margin-right: 10px;
    position: relative;
}

.screenshots-wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.screenshot-item {
    flex-basis: calc(33.333% - 20px);
    text-align: center;
}

.screenshot-item img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    cursor: zoom-in;
    transition: transform 0.3s ease;
}

.screenshot-item img:hover {
    transform: scale(1.05);
}

.screenshot-item p {
    margin-top: 10px;
    font-size: 14px;
    color: #8A94A7;
}

@media (max-width: 768px) {
    .screenshot-item {
        flex-basis: calc(50% - 20px);
    }
}

@media (max-width: 480px) {
    .screenshot-item {
        flex-basis: 100%;
    }
}

.table-responsive {
    overflow-x: auto;
    width: 100%;
}

@media (max-width: 768px) {
    .pricing-table-comparison th,
    .pricing-table-comparison td {
        padding: 12px;
    }
}

.feature-icon {
    color: #026ed3;
}

a {
    text-decoration: none;
}

a:hover, a:focus {
    text-decoration: none; /* Ensures no underline on hover or focus */
}
